Spcbenp.vue 1004 Bytes
Newer Older
1
<template>
Wuyuqiu committed
2
  <div class="eibs">
wangna committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
    <c-col :span="22">
      <el-form-item label="受益人特殊付款条款" prop="lidgrp.blk.spcben">
        <c-input
          type="textarea"
          v-model="model.lidgrp.blk.spcben"
          maxlength="65"
          :rows="30"
          show-word-limit
          placeholder="请输入受益人特殊付款条款"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="2">
      <c-button
        size="small"
        type="primary"
        icon="el-icon-more"
        @click="onSpcbenButtxmsel"
      >
      </c-button>
    </c-col>
  </div>
26 27
</template>
<script>
wangna committed
28
import Api from "~/service/Api";
wangren committed
29
import commonProcess from "~/mixin/commonProcess";
wangna committed
30 31
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Litopn/Event";
32 33

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