Adcpame.vue 2.28 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
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.adlcndame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Additional  Conditions Amendment History"
25
                    :rows="12"
SunJie committed
26 27 28
                    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 50
        <c-col :span="1" style="text-align: right">
            <c-button size="small" style="margin:0 0;" type="primary" icon="el-icon-search" @click="onAdlcndameButtxmsel">
SunJie committed
51
            </c-button>
潘际乾 committed
52
        </c-col>
SunJie committed
53
    </div>
54 55
</template>
<script>
SunJie committed
56
import Api from "~/service/Api";
wangren committed
57
import commonProcess from "~/mixin/commonProcess";
SunJie committed
58 59
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
60 61

export default {
62
    inject: ['root'],
SunJie committed
63
    props: ["model", "codes"],
wangren committed
64
    mixins: [commonProcess],
SunJie committed
65 66
    data() {
        return {};
67
    },
SunJie committed
68 69 70
    methods: { ...Event },
    created: function () {},
};
71 72 73
</script>
<style>
</style>