Docpan.vue 3.01 KB
Newer Older
cyy committed
1 2 3 4 5 6 7 8 9 10 11
<template>
  <div class="eibs-tab">
                                               
	<c-col :span="12">
	    <span  v-text="model.trnmod.trndoc.advlabel"   data-path=".trnmod.trndoc.advlabel" > </span>
	</c-col>
                                   
	<c-col :span="12">
	    <span  v-text="model.trnmod.trndoc.amdnam"   data-path=".trnmod.trndoc.amdnam" > </span>
	</c-col>
                  
cyy committed
12
    <!-- <c-col :span="22" style="margin-bottom: 18px" :offset="1">
cyy 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 42 43 44 45
            <c-table
                style="text-align: center"
                :list="model.trnmod.trncod.doceot"
                :paginationShow="false"
                :border="true"
            >
                <el-table-column label="Role" width="auto">
                    <template #default="scope">
                        <el-select v-model="scope.row.rol">
                            <el-option
                                v-for="item in codes.setfelRol"
                                :key="item.value"
                                :label="item.label"
                                :value="item.value"
                            >
                            </el-option>
                        </el-select>
                    </template>
                </el-table-column>
                
                <el-table-column label="Details" prop="det" width="auto">
                    <template slot-scope="scoped">
                        <el-button
                            size="mini"
                            type="primary"
                            @click="detail2(scoped.$index, scoped.row)"
                            >详情</el-button
                        >
                    </template>
                </el-table-column>


            </c-table>
cyy committed
46
        </c-col>    -->
cyy committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74







       <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">
        <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
75
import commonProcess from "~/mixin/commonProcess";
cyy committed
76 77 78 79 80 81
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Letcan/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
82
    mixins: [commonProcess],
cyy committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96
    data(){
        return {

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

    }
}
</script>
<style>

</style>