Inspame.vue 911 Bytes
Newer Older
1
<template>
2
  <div class="eibs">
3
                                                                
4
       <c-col :span="20">
jianglong committed
5
        <el-form-item label="付款/承兑/议付银行指示" prop="lidgrp.blk.insbnk">
6 7
            <c-input 
            :rows="20"
jianglong committed
8
            type="textarea" v-model="model.lidgrp.blk.insbnk" maxlength="800" show-word-limit placeholder="请输入指示内容" ></c-input>
9 10 11
        </el-form-item>
        </c-col>
                                   
jianglong committed
12
       
13 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
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litdla/Event"

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

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

    }
}
</script>
<style>

</style>