1
2
3
4
5
6
7
8
9
10
11
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
39
40
41
42
43
44
45
46
<template>
<div class="eibs-tab">
<!-- SF000249 : Description of Goods -->
<c-col :span="24">
<c-col :span="20">
<el-form-item :label="$t('Description of Goods')" prop="ltdgrp.blk.lcrgod">
<c-mul-row-input :isRequired="false" :autosize="{ minRows:22, maxRows: 800}" :charmod="2"
:cols="65" :rows="800" disabled placeholder="" v-model="model.ltdgrp.blk.lcrgod">
</c-mul-row-input>
</el-form-item>
</c-col>
<c-col :span="4">
<c-button size="small" type="primary" icon="el-icon-search" >
{{('...')}}
</c-button>
</c-col>
</c-col>
</div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import event from "../event"
export default {
inject: ['root'],
props:["model","codes"],
mixins: [event],
data(){
return {
}
},
methods:{},
created:function(){
}
}
</script>
<style>
</style>