Mt799.vue 1.56 KB
Newer Older
1 2 3
<template>
  <div class="eibs-tab">
                                               
潘际乾 committed
4
       <c-col :span="20">
5
        <el-form-item label="受益人英文名称" prop="ditp.bennam">
SunJie committed
6
            <c-input  v-model="model.ditp.bennam" maxlength="100" @blur="BlurBennam" ></c-input>
7
        </el-form-item>
潘际乾 committed
8
       </c-col>             
9
                                   
潘际乾 committed
10
       <c-col :span="20">
11
        <el-form-item label="申请人英文名称" prop="ditp.aplname">
SunJie committed
12
            <c-input  v-model="model.ditp.aplname" maxlength="100" @blur="BlurAplname"></c-input>
13
        </el-form-item>
潘际乾 committed
14
       </c-col>             
15
                                   
16
       <c-col :span="20">
SunJie committed
17 18
        <el-form-item label="MT799(79)签名" prop="ditp.signam">
            <c-input  v-model="model.ditp.signam" maxlength="50" @blur="BlurSignam" ></c-input>
19
        </el-form-item>
潘际乾 committed
20
       </c-col>             
21
                                   
22
       <c-col :span="20">
SunJie committed
23 24
        <el-form-item label="MT799(79)备注" prop="ditp.remark">
            <c-input type="textarea" v-model="model.ditp.remark" maxlength="800" :rows="10" ></c-input>
25
        </el-form-item>
潘际乾 committed
26
        </c-col>
27 28 29 30
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
31
import commonProcess from "~/mixin/commonProcess";
32
import CodeTable from "~/config/CodeTable"
SunJie committed
33
import Event from "~/model/Ditopn/Event"
34 35

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

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

    }
}
</script>
<style>

</style>