Inspame.vue 804 Bytes
Newer Older
huxi committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
  <div class="eibs">
                                                                
       <c-col :span="24">
        <el-form-item label="指示信息" prop="lidgrp.blk.insbnk">
            <c-input 
            type="textarea" 
            v-model="model.lidgrp.blk.insbnk" 
            maxlength="1000" 
            :rows="20"
            show-word-limit 
            placeholder="请输入指示信息"
             ></c-input>
        </el-form-item>
        </c-col>
                                   
       
  </div>
</template>
<script>
huxi committed
21
import event from '../event';
huxi committed
22 23 24

export default {
    inject: ['root'],
huxi committed
25
    props:['model','codes'],
huxi committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    mixins: [event],
    data(){
        return {

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

    }
}
</script>
<style>

</style>