Narp.vue
1.22 KB
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
47
48
49
50
51
52
<template>
<div class="eibs">
<el-col :span="12" style="padding-right: 20px;">
<el-form-item label="Historic overview of narratives" prop="oldlidgrp.blk.narhis">
<c-input
disabled
type="textarea"
v-model="model.oldlidgrp.blk.narhis"
maxlength="49950"
show-word-limit
:rows="12"
placeholder="请输入内容" ></c-input>
</el-form-item>
</el-col>
<el-col :span="12" style="padding-left: 20px;">
<c-col :span="24">
<el-form-item label="Current Amendment" prop="swiadd.nartxt">
<c-input
disabled
type="textarea"
v-model="model.swiadd.nartxt"
maxlength="1750"
show-word-limit
:rows="12"
placeholder="请输入叙述内容" ></c-input>
</el-form-item>
</c-col>
</el-col>
</div>
</template>
<script>
import event from '../event';
export default {
inject: ['root'],
props:['model','codes'],
mixins: [event],
data(){
return {
}
},
methods:{ },
created:function(){
}
}
</script>
<style>
</style>