Lendoc.vue 2.15 KB
Newer Older
1
<template>
2
    <div class="eibs-tab">
liuxin committed
3
        <!-- ===================Left================= -->
4
        <c-col :span="12">
liuxin committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18
            <c-col :span="24">
                <el-form-item label="Input Account" prop="lendoc.actflg">
                    <c-col :span="3">
                        <c-checkbox v-model="model.lendoc.actflg"></c-checkbox>
                    </c-col>
                    <c-col :span="21">
                        <c-input
                            v-model="model.lendoc.account"
                            maxlength="25"
                            placeholder="请输入ACT"
                        ></c-input>
                    </c-col>
                </el-form-item>
            </c-col>
19

liuxin committed
20 21
            <c-col :span="24">
                <el-form-item label="Declaration Number" prop="lendoc.decnum">
22
                    <c-input
liuxin committed
23 24 25
                        v-model="model.lendoc.decnum"
                        maxlength="22"
                        placeholder="请输入Declaration Number"
26
                    ></c-input>
liuxin committed
27 28
                </el-form-item>
            </c-col>
29 30
        </c-col>

liuxin committed
31
        <!-- ===================Right================= -->
32
        <c-col :span="12">
liuxin committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46
            <c-col :span="24">
                <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>
                </el-form-item>
            </c-col>
47
        </c-col>
48
    </div>
49 50
</template>
<script>
51
import Api from "~/service/Api";
52
import commonProcess from "~/mixin/commonProcess";
53 54
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event";
55 56

export default {
57 58
    inject: ["root"],
    props: ["model", "codes"],
59
    mixins: [commonProcess],
60 61
    data() {
        return {};
62
    },
63 64 65
    methods: { ...Event },
    created: function () {},
};
66 67 68
</script>
<style>
</style>