Adcpame.vue 2.33 KB
Newer Older
1
<template>
SunJie committed
2
    <div class="eibs-tab">
潘际乾 committed
3
        <c-col :span="11">
4
            <el-form-item label="其他条款" prop="didgrp.blk.adlcnd">
SunJie committed
5 6 7 8 9 10
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.adlcnd"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Additional Conditions"
11
                    :rows="12"
SunJie committed
12 13 14
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
15
        </c-col>
SunJie committed
16

17 18
        <c-col :span="11" :offset="1">
            <el-form-item label="其他条款历史修改" prop="didgrp.blk.adlcndame">
SunJie committed
19 20 21 22 23 24 25 26 27 28
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.adlcndame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Additional  Conditions Amendment History"
                    :rows="15"
                    disabled
                ></c-input>
            </el-form-item>
潘际乾 committed
29
        </c-col>
SunJie committed
30
        <!--                   
潘际乾 committed
31
       <c-col :span="12">
32
	    <c-checkbox v-model="model.didgrp.rec.redclsflg">Red/Green Clause</c-checkbox>
潘际乾 committed
33
       </c-col>  -->
SunJie committed
34

35
        <c-col :span="11">
SunJie committed
36 37 38 39 40 41 42
            <el-form-item label="其他条款修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.adlcnd"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Additional Conditions amendment"
43
                    :rows="12"
SunJie committed
44 45 46
                    
                ></c-input>
            </el-form-item>
潘际乾 committed
47
        </c-col>
SunJie committed
48

49
        <c-col :span="1">
SunJie committed
50 51 52 53
            <c-button
                size="small"
                type="primary"
                @click="onAdlcndameButtxmsel"
54
                style="margin-left:5px"
SunJie committed
55 56 57
            >
                ...
            </c-button>
潘际乾 committed
58
        </c-col>
SunJie committed
59
    </div>
60 61
</template>
<script>
SunJie committed
62
import Api from "~/service/Api";
63
import CommonProcess from "~/mixin/CommonProcess";
SunJie committed
64 65
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
66 67

export default {
68
    inject: ['root'],
SunJie committed
69
    props: ["model", "codes"],
70
    mixins: [CommonProcess],
SunJie committed
71 72
    data() {
        return {};
73
    },
SunJie committed
74 75 76
    methods: { ...Event },
    created: function () {},
};
77 78 79
</script>
<style>
</style>