Docpan.vue 1.46 KB
Newer Older
1 2 3
<template>
  <div class="eibs-tab">
                              
潘际乾 committed
4
       <c-col :span="12">
5 6 7
        <el-form-item label="ACT">
            <c-input type="textarea" v-model="model.lendoc.account" maxlength="25" show-word-limit placeholder="请输入ACT" ></c-input>
        </el-form-item>
潘际乾 committed
8
        </c-col>
9
                                   
潘际乾 committed
10
       <c-col :span="12">
11
	    <c-checkbox v-model="model.lendoc.actflg">Input Account</c-checkbox>
潘际乾 committed
12
       </c-col> 
13
                  
潘际乾 committed
14
       <c-col :span="12">
15 16 17
        <el-form-item label="Verification Certificate Number">
            <c-input type="textarea" v-model="model.lendoc.vercerref" maxlength="20" show-word-limit placeholder="请输入Verification Certificate Number" ></c-input>
        </el-form-item>
潘际乾 committed
18
        </c-col>
19
                                   
潘际乾 committed
20
       <c-col :span="12">
21 22 23
        <el-form-item label="Declaration Number">
            <c-input  v-model="model.lendoc.decnum" maxlength="22"  placeholder="请输入Declaration Number"></c-input>
        </el-form-item>
潘际乾 committed
24
       </c-col>             
25 26 27 28
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
29
import commonProcess from "~/mixin/commonProcess";
30 31 32 33
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cptadv/Event"

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

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

    }
}
</script>
<style>

</style>