Spcrcvp.vue 1.13 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
lianyang committed
3 4 5 6 7 8 9 10 11 12
    <c-col :span="20">
      <el-form-item label="银行专用特殊付款条件" prop="ledgrp.blk.spcrcb">
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.spcrcb"
          maxlength="52000"
          show-word-limit
          :rows="30"
          placeholder="请输入Special Payment Cond.for Bank only"
        ></c-input>
13 14 15
      </el-form-item>
    </c-col>

lianyang committed
16
    <c-col :span="2">
17
    <!-- @click="onSpcrcbButtxmsel" -->
lianyang committed
18 19 20 21
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
22
        @click="showGridPromptDialog('letp.spcrcb.buttxmsel', null, null,{TXT: 'ledgrp.blk.spcrcb'}, {TXT: false},'doxpDialog')"
lianyang committed
23
      >
24 25 26 27 28 29
        ...
      </c-button>
    </c-col>
  </div>
</template>
<script>
lianyang committed
30 31 32 33
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letnot/Event'
34 35 36

export default {
  inject: ['root'],
lianyang committed
37
  props: ['model', 'codes'],
38 39
  mixins: [commonProcess],
  data() {
lianyang committed
40
    return {}
41
  },
42
  methods: { ...Event},
lianyang committed
43
  created: function () {},
44 45
}
</script>
lianyang committed
46
<style></style>