Mt799.vue 1.43 KB
Newer Older
liuxin committed
1 2 3 4
<template>
  <div class="eibs-tab">
                                               
       <el-col :span="20">
denyu committed
5
        <el-form-item label="MT799(79)受益人英文名称" prop="ditp.bennam">
liuxin committed
6 7 8 9 10
            <c-input  v-model="model.ditp.bennam" maxlength="100" ></c-input>
        </el-form-item>
       </el-col>             
                                   
       <el-col :span="20">
denyu committed
11
        <el-form-item label="MT799(79)申请人英文名称" prop="ditp.aplname">
liuxin committed
12 13 14 15 16
            <c-input  v-model="model.ditp.aplname" maxlength="100"></c-input>
        </el-form-item>
       </el-col>             
                                   
       <el-col :span="12">
denyu committed
17
        <el-form-item label="MT799(79)签名" prop="ditp.signam">
liuxin committed
18 19 20 21 22
            <c-input  v-model="model.ditp.signam" maxlength="50"  ></c-input>
        </el-form-item>
       </el-col>             
                                   
       <el-col :span="15">
denyu committed
23
        <el-form-item label="MT799(79)备注" prop="ditp.remark">
1377875331@qq.com committed
24
            <c-input type="textarea" v-model="model.ditp.remark" maxlength="800" :rows="6" ></c-input>
liuxin committed
25 26 27 28 29 30 31
        </el-form-item>
        </el-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
liuxin committed
32
import Event from "~/model/Ditopn/Event"
liuxin committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

export default {
    props:["model","codes"],
    data(){
        return {

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

    }
}
</script>
<style>

</style>