Inspame.vue 1 KB
Newer Older
1 2 3 4 5
<template>
  <div class="eibs-tab">
                             <!-- SG000347 : Instructions to Paying/Accepting/Negotiating Bank -->
                  
       <c-col :span="20">
wangna committed
6
        <el-form-item label="对付款、承兑、议付行的指示" prop="ltdgrp.blk.insbnk">
7 8 9 10 11 12
            <c-input 
            type="textarea" 
            v-model="model.ltdgrp.blk.insbnk" 
            maxlength="1000" 
            :rows="20"
            show-word-limit 
wangna committed
13
            placeholder="请输入对付款、承兑、议付行的指示"
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
             ></c-input>
        </el-form-item>
        </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttame/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>