Adcpame.vue 2.24 KB
Newer Older
1
<template>
2 3 4 5 6 7 8 9
    <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
wangna committed
10
                    placeholder="请输入其他条款"
11 12 13 14 15 16 17 18 19 20 21 22 23
                    :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
wangna committed
24
                    placeholder="请输入其他条款历史修改"
25 26 27 28 29 30 31
                    :rows="12"
                    disabled
                ></c-input>
            </el-form-item>
        </c-col>
        <!--                   
       <c-col :span="12">
jianglong committed
32
	    <c-checkbox v-model="model.didgrp.rec.redclsflg">红/绿条款</c-checkbox>
33
       </c-col>  -->
34

35 36 37 38 39 40 41
        <c-col :span="11">
            <el-form-item label="其他条款修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.adlcnd"
                    maxlength="65"
                    show-word-limit
wangna committed
42
                    placeholder="请输入其他条款修改"
43 44 45 46 47
                    :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>