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
<template>
<div class="eibs-tab">
<c-col :span="24" class="col-left">
<c-col :span="24">
<el-form-item>
<c-checkbox v-model="model.sndmsg" true-label="X" false-label="" class="checkbox-left">Send Message</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="Narrative" prop="lttcanp.trnrec.strinf">
<c-input
:rows="10"
type="textarea"
v-model="model.lttcanp.trnrec.strinf"
maxlength="1750"
show-word-limit
placeholder="请输入"></c-input>
</c-form-item>
</c-col>
</c-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>