Canp.vue 1.76 KB
Newer Older
1 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
<template>
    <c-row>
        <!-- ==================== Trtp0面板 ==================== -->
        <c-col :span="24">
            <m-trtp0 :model="model" :code="codes"/>
        </c-col>             

        <!-- ==================== 分割线 ==================== -->
        <c-col :span="24">
            <el-form-item label-width="0px">
                <el-divider />
            </el-form-item>
        </c-col>

        <!-- ==================== Narrative ==================== -->
        <c-col :span="24" style="margin-top:30px">
            <c-col :span="13" >
                <el-form-item label="Narrative" label-width="135px" prop="strinf">
                    <c-input v-model="model.strinf"
                            type="textarea"
                            :autosize="{minRows:12,maxRows:12}"
                            maxlength="1750" 
                            show-word-limit 
                            placeholder="请输入Narrative" 
                    ></c-input>
                </el-form-item>
            </c-col>
            <c-col :span="0.5">
                &nbsp;&nbsp;
            </c-col>      
            <c-col :span="8">
                <c-checkbox v-model="model.sndmsg">Send Message</c-checkbox>
            </c-col>
        </c-col>
    </c-row>
</template>
<script>
import Api from "~/service/Api"
wangren committed
39
import commonProcess from "~/mixin/commonProcess";
40 41 42 43 44 45 46 47 48 49
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Trtcan/Event"
import Trtp0 from "./Trtp0"

export default {
    components:{
        "m-trtp0" : Trtp0,
    },
    inject: ['root'],
    props:["model","codes"],
wangren committed
50
    mixins: [commonProcess],
51 52 53 54 55 56 57 58 59 60 61 62 63 64
    data(){
        return {

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

    }
}
</script>
<style>

</style>