Coninfp.vue 2.49 KB
Newer Older
1 2 3
<template>
  <div class="eibs-tab">
                              
潘际乾 committed
4
	<c-col :span="12">
5
	    <span  v-text="model.mtabut.coninf.oitinf.labinftxt"   data-path=".mtabut.coninf.oitinf.labinftxt" > </span>
潘际乾 committed
6
	</c-col>
7
                                   
潘际乾 committed
8
       <c-col :span="12">
9 10 11
        <el-form-item label="Infotext">
            <c-input type="textarea" v-model="model.mtabut.coninf.oitinf.oit.inftxt" maxlength="60" show-word-limit placeholder="请输入Infotext" ></c-input>
        </el-form-item>
潘际乾 committed
12
        </c-col>
13
                  
潘际乾 committed
14
       <c-col :span="12">
15 16 17 18
        <el-form-item label="Infotext Level">
            <c-select v-model="model.mtabut.coninf.oitinf.oit.inflev" style="width:100%" placeholder="请选择Infotext Level">
              </c-select>
        </el-form-item>
潘际乾 committed
19
       </c-col>
20
                  
潘际乾 committed
21
	<c-col :span="12">
22
	    <span  v-text="model.mtabut.coninf.oitset.labinftxt"   data-path=".mtabut.coninf.oitset.labinftxt" > </span>
潘际乾 committed
23
	</c-col>
24
                                   
潘际乾 committed
25
       <c-col :span="12">
26 27 28
        <el-form-item label="Infotext">
            <c-input type="textarea" v-model="model.mtabut.coninf.oitset.oit.inftxt" maxlength="60" show-word-limit placeholder="请输入Infotext" ></c-input>
        </el-form-item>
潘际乾 committed
29
        </c-col>
30
                  
潘际乾 committed
31
       <c-col :span="12">
32 33 34 35
        <el-form-item label="Infotext Level">
            <c-select v-model="model.mtabut.coninf.oitset.oit.inflev" style="width:100%" placeholder="请选择Infotext Level">
              </c-select>
        </el-form-item>
潘际乾 committed
36
       </c-col>
37
                                   
潘际乾 committed
38
       <c-col :span="12">
39 40 41
        <el-form-item label="执行日期">
            <c-date-picker type="date"  v-model="model.mtabut.coninf.conexedat" style="width:100%"  placeholder="请选择执行日期"></c-date-picker>
        </el-form-item>
潘际乾 committed
42
       </c-col>
43
                                   
潘际乾 committed
44
       <c-col :span="12">
45 46 47
        <el-form-item label="User ID">
            <c-input  v-model="model.mtabut.coninf.usr.extkey" maxlength="8"  placeholder="请输入User ID"></c-input>
        </el-form-item>
潘际乾 committed
48
       </c-col>             
49 50 51 52
  </div>
</template>
<script>
import Api from "~/service/Api"
53
import CommonProcess from "~/mixin/CommonProcess";
54 55 56 57
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cptadv/Event"

export default {
58
    inject: ['root'],
59
    mixins: [CommonProcess],
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    props:["model","codes"],
    data(){
        return {

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

    }
}
</script>
<style>

</style>