Narp.vue 2.9 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 34 35 36 37 38 39 40 41 42 43 44 45
    <div class="eibs-tab">
        <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onSav">
            保存
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onUsrcon">
            用户确认
        </c-button>
       </c-col> -->
       
        <c-col :span="11">
            <el-form-item label="历史修改">
                <c-input
                    type="textarea"
                    v-model="model.olddidgrp.blk.narhis"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入"
                    :rows="12"
                    disabled
                ></c-input>
            </el-form-item>
        </c-col>
        <c-col :span="11" :offset="1">
            <el-form-item label="内容修改">
                <c-input
                    type="textarea"
                    v-model="model.trnmod.swiadd.nartxt"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入"
                    :rows="12"
                    :disabled="!checkboxModel"
                ></c-input>
            </el-form-item>
        </c-col>
        <c-col :span="11" :offset="12">
            <el-form-item>
            <c-checkbox v-model="checkboxModel">修改</c-checkbox>
            </el-form-item>
        </c-col>
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
        
        <!--                   
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onChk">
            检核
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onUsrchk">
            检核
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onSyswrnButshw">
            提示信息
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onPen">
            暂存
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onCan">
            退出
        </c-button>
       </c-col> -->
78

79 80 81 82 83 84
        <!-- <c-col :offset="12" :span="12">
            <c-checkbox v-model="model.trnmod.swiadd.nartxtflg"
                >修改</c-checkbox
            >
        </c-col> -->
    </div>
85 86 87
</template>
<script>
import Api from "~/service/Api";
wangren committed
88
import commonProcess from "~/mixin/commonProcess";
89
import CodeTable from "~/config/CodeTable";
90
import Event from "~/model/Ditame/Event";
91 92

export default {
93 94 95 96 97 98 99 100 101 102
    inject: ['root'],
    props: ["model", "codes"],
    mixins: [commonProcess],
    data() {
        return {
            checkboxModel:'',
        };
    },
    methods: { ...Event },
    created: function () {},
103 104 105 106
};
</script>
<style>
</style>