Narp.vue 2.7 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
        <el-col :span="11">
            <c-col :span="24">
        <el-form-item label="Historic Overview of Narratives" prop="oldlidgrp.blk.narhis">
            <c-input type="textarea"
            disabled 
            :rows="20"
             v-model="model.oldlidgrp.blk.narhis" maxlength="500" show-word-limit placeholder="请输入Historic Overview of Narratives" ></c-input>
        </el-form-item>
        </c-col>
        </el-col>

        <el-col :span="11" :offset="1">
                <c-col :span="24">
        <el-form-item label="Narrative" prop="trnmod.swiadd.nartxt">
            <c-input type="textarea" 
            disabled
            :rows="20"
            v-model="model.trnmod.swiadd.nartxt" maxlength="500" show-word-limit placeholder="请输入Narrative" ></c-input>
        </el-form-item>
        </c-col>
        </el-col>
24
                                                                
25
       <!-- <c-col :span="12">
26 27 28 29 30 31 32 33 34
        <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>
35
       </c-col> -->
36
                  
37
       
38
                  
39
       
40
                  
41
       <!-- <c-col :span="12">
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
        <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>
69
       </c-col> -->
70
                  
71
       <!-- <c-col :span="12">
72
	    <c-checkbox v-model="model.trnmod.swiadd.nartxtflg">Narrative modified</c-checkbox>
73
       </c-col> -->
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litdla/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>