Adcpame.vue 2.28 KB
Newer Older
1
<template>
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    <div class="eibs-tab">
        <c-col :span="11">
            <el-form-item label="其他条款" prop="didgrp.blk.adlcnd">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.adlcnd"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Additional Conditions"
                    :rows="12"
                    disabled
                ></c-input>
            </el-form-item>
        </c-col>

        <c-col :span="11" :offset="1">
            <el-form-item label="其他条款历史修改" prop="didgrp.blk.adlcndame">
                <c-input
                    type="textarea"
                    v-model="model.didgrp.blk.adlcndame"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入Additional  Conditions Amendment History"
                    :rows="12"
                    disabled
                ></c-input>
            </el-form-item>
        </c-col>
        <!--                   
       <c-col :span="12">
	    <c-checkbox v-model="model.didgrp.rec.redclsflg">Red/Green Clause</c-checkbox>
       </c-col>  -->
34

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

49 50 51
        <c-col :span="1" style="text-align: right">
            <c-button size="small" style="margin:0 0;" type="primary" icon="el-icon-search" @click="onAdlcndameButtxmsel">
            </c-button>
52
        </c-col>
53
    </div>
54 55 56
</template>
<script>
import Api from "~/service/Api";
wangren committed
57
import commonProcess from "~/mixin/commonProcess";
58
import CodeTable from "~/config/CodeTable";
59
import Event from "~/model/Ditame/Event";
60 61

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