Setinsp.vue 1.21 KB
Newer Older
wangna committed
1 2
<template>
  <div class="eibs-tab">
wangna committed
3 4 5 6 7 8 9 10 11
    <c-col :span="12">
      <c-form-item label="Settlement Instructions" prop="ccdgrp.blk.setins">
        <c-input
          type="textarea"
          :rows="6"
          v-model="model.ccdgrp.blk.setins"
          maxlength="600"
          show-word-limit
          placeholder="请输入Settlement Instructions"
wangna committed
12
          :disabled="model.ccdgrp.rec.modset == '2'"
wangna committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-button
        size="small"
        type="primary"
        @click="
          showGridPromptDialog(
            'cctp.setins.buttxmsel',
            null,
            null,
            { TXT: 'ccdgrp.blk.setins' },
            { TXT: false },
            'doxpDialog'
          )
        "
      >
        ...
      </c-button>
    </c-col>
wangna committed
35 36 37
  </div>
</template>
<script>
wangna committed
38
import Api from "~/service/Api";
wangna committed
39
import commonProcess from "~/mixin/commonProcess";
wangna committed
40 41
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cctdav/Event";
wangna committed
42 43

export default {
wangna committed
44 45 46 47 48 49 50 51 52
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
wangna committed
53 54 55
</script>
<style>
</style>