Docpan.vue 1.71 KB
Newer Older
chenzhaole committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12

    <c-col :span="11">
        
    </c-col>
    
    <c-col :span="11">
        
    </c-col>
    
    <!--  -->
chenzhaole committed
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
	<c-col :span="12">
	    <span  v-text="model.trnmod.trndoc.advlabel"   data-path=".trnmod.trndoc.advlabel" > </span>
	</c-col>
                  
       <c-col :span="12">
        <el-form-item label="国内证落款" prop="trnmod.trndoc.advnam">
            <c-input  v-model="model.trnmod.trndoc.advnam" maxlength="50"  placeholder="请输入国内证落款"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="修改申请人名称" prop="trnmod.trndoc.amdapl">
            <c-input type="textarea" v-model="model.trnmod.trndoc.amdapl" maxlength="50" show-word-limit placeholder="请输入修改申请人名称" ></c-input>
        </el-form-item>
        </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.trnmod.trndoc.amdnam"   data-path=".trnmod.trndoc.amdnam" > </span>
	</c-col>
                  
       <c-col :span="12">
        <el-form-item label="国内证通知书" prop="trnmod.trndoc.advdoc">
            <c-input  v-model="model.trnmod.trndoc.advdoc" maxlength="1"  placeholder="请输入国内证通知书"></c-input>
        </el-form-item>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
42
import commonProcess from "~/mixin/commonProcess";
chenzhaole committed
43 44 45 46 47 48
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cptato/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
49
    mixins: [commonProcess],
chenzhaole committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63
    data(){
        return {

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

    }
}
</script>
<style>

</style>