Pda.vue 1.29 KB
Newer Older
liushikai committed
1 2
<template>
  <div class="eibs-tab">
liuxin committed
3
        <c-col :span="24" style="height:24px;">
4
            <el-form-item label="配置面板" class="messageLabel">
liuxin committed
5 6 7 8 9 10
            </el-form-item>
        </c-col>
        <c-col :span="24">
            <el-divider></el-divider>
        </c-col>                    

liushikai committed
11
       <c-col :span="12">
12
	    <c-checkbox v-model="model.srvpda.exeflg">检查待定确认</c-checkbox>
liuxin committed
13 14 15
       </c-col>
                                   
       <c-col :span="12">
16 17
        <el-form-item label="重试前等待时间" prop="srvpda.rettim">
            <c-input  v-model="model.srvpda.rettim"  placeholder="请输入重试前等待时间"></c-input>
liushikai committed
18 19
        </el-form-item>
       </c-col>
liuxin committed
20
                   </div>
liushikai committed
21 22 23
</template>
<script>
import Api from "~/service/Api"
wangren committed
24
import commonProcess from "~/mixin/commonProcess";
liushikai committed
25 26 27 28 29 30
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Mgrtsk/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
31
    mixins: [commonProcess],
liushikai committed
32 33 34 35 36 37 38 39 40 41 42
    data(){
        return {

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

    }
}
</script>
liuxin committed
43 44 45 46 47 48 49 50 51 52
<style scoped>
.el-col >>> .el-divider--horizontal {
  margin-top: 5px;
}
.messageLabel >>> .el-form-item__label{
    text-align: left;
    font-weight:bold;
    font-size: 12px;
}
</style>