Spcrcvp.vue 1.11 KB
Newer Older
1
<template>
LiRui committed
2
  <div class="eibs">
lianyang committed
3
    <c-col :span="20">
jianglong committed
4
      <el-form-item label="银行专用特殊付款条款" prop="ledgrp.blk.spcrcb">
lianyang committed
5 6 7 8 9 10
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.spcrcb"
          maxlength="52000"
          show-word-limit
          :rows="30"
wangna committed
11
          placeholder="请输入银行专用特殊付款条款"
lianyang committed
12
        ></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
      <c-button
        size="small"
        type="primary"
LiRui committed
21
        icon="el-icon-more"
22
        @click="showGridPromptDialog('letp.spcrcb.buttxmsel', null, null,{TXT: 'ledgrp.blk.spcrcb'}, {TXT: false},'doxpDialog')"
lianyang committed
23
      >
24 25 26 27 28
      </c-button>
    </c-col>
  </div>
</template>
<script>
lianyang committed
29 30 31 32
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letnot/Event'
33 34 35

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