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

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

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

    }
}
</script>
<style>

</style>