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
<template>
<div class="eibs-tab">
<!-- S0000103 : Reference -->
<c-col :span="8">
<c-form-item :label="$t('fttpcm.S0000103')" prop="ftdgrp.rec.ownref">
<c-input v-model="model.ftdgrp.rec.ownref" maxlength="16" :placeholder="$t('other.please_enter')+$t('fttpcm.S0000103')"></c-input>
</c-form-item>
</c-col>
<!-- S0000104 : Related Reference -->
<c-col :span="8">
<c-form-item :label="$t('fttpcm.S0000104')" prop="relref">
<c-input v-model="model.relref" maxlength="16" :placeholder="$t('other.please_enter')+$t('fttpcm.S0000104')"></c-input>
</c-form-item>
</c-col>
<!-- S0000102 : Narrative -->
<c-col :span="8">
<c-form-item :label="$t('fttpcm.S0000102')" prop="narblk">
<c-input type="textarea" v-model="model.narblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('fttpcm.S0000102')" ></c-input>
</c-form-item>
</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: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
</script>
<style>
</style>