Docpan.vue 1.72 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
wangna committed
3 4 5 6 7
                             <!-- SF000545 : Correspondence -->
                  
<c-col :span="12">
    <span  v-text="model.trnmod.trndoc.advlabel"   data-path=".trnmod.trndoc.advlabel" > </span>
</c-col>
8 9
                  
       <c-col :span="12">
wangna committed
10 11 12
        <c-form-item label="国内证落款" prop="trnmod.trndoc.advnam">
            <c-input  v-model="model.trnmod.trndoc.advnam" maxlength="50"  :placeholder="$t('other.please_enter')+'国内证落款'"></c-input>
        </c-form-item>
13 14 15
       </c-col>
                  
       <c-col :span="12">
wangna committed
16 17 18
        <c-form-item label="修改申请人名称" prop="trnmod.trndoc.amdapl">
            <c-input type="textarea" v-model="model.trnmod.trndoc.amdapl" maxlength="50" show-word-limit :placeholder="$t('other.please_enter')+'修改申请人名称'" ></c-input>
        </c-form-item>
19 20
        </c-col>
                  
wangna committed
21 22 23
<c-col :span="12">
    <span  v-text="model.trnmod.trndoc.amdnam"   data-path=".trnmod.trndoc.amdnam" > </span>
</c-col>
24 25
                  
       <c-col :span="12">
wangna committed
26 27 28
        <c-form-item label="国内证通知书" prop="trnmod.trndoc.advdoc">
            <c-input  v-model="model.trnmod.trndoc.advdoc" maxlength="1"  :placeholder="$t('other.please_enter')+'国内证通知书'"></c-input>
        </c-form-item>
29 30 31 32 33
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
34
import commonProcess from "~/mixin/commonProcess";
35 36 37 38 39 40
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cctdcr/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
41
    mixins: [commonProcess],
42 43 44 45 46 47 48 49 50 51 52 53 54 55
    data(){
        return {

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

    }
}
</script>
<style>

</style>