Narp.vue 1.37 KB
Newer Older
1
<template>
Wuyuqiu committed
2
  <div class="eibs">
wangna committed
3
       <el-col :span="12" style="padding-right: 20px;">                
jianglong committed
4
       <el-form-item label="历史叙述内容" prop="oldlidgrp.blk.narhis">
5
            <c-input 
huangxin committed
6
            disabled
7 8
            type="textarea" 
            v-model="model.oldlidgrp.blk.narhis" 
lianyang committed
9
            maxlength="49950" 
10 11
            show-word-limit
            :rows="12"  
jianglong committed
12
            placeholder="请输入内容" ></c-input>
wangna committed
13
        </el-form-item>     
14 15
       </el-col>

Wuyuqiu committed
16
       <el-col :span="12" style="padding-left: 20px;">
17
       <c-col :span="24">
jianglong committed
18
        <el-form-item label="叙述内容" prop="trnmod.swiadd.nartxt">
19
            <c-input 
huangxin committed
20
            disabled
21 22
            type="textarea" 
            v-model="model.trnmod.swiadd.nartxt" 
23
            maxlength="1750" 
24 25
            show-word-limit 
            :rows="12" 
jianglong committed
26
            placeholder="请输入叙述内容" ></c-input>
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
        </el-form-item>
        </c-col>
       </el-col>          
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litame/Event"

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

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

    }
}
</script>
<style>

</style>