Cipack.vue 1.33 KB
Newer Older
liushikai committed
1
<template>
liuxin committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
    <div class="eibs-tab">
        <c-col :span="24" style="height: 24px">
            <el-form-item label="Configuration Panel" class="messageLabel">
            </el-form-item>
        </c-col>
        <c-col :span="24">
            <el-divider></el-divider>
        </c-col>

        <c-col :span="12">
            <c-checkbox v-model="model.srvpdb.exeflg"
                >cxheck open ACKs</c-checkbox
            >
        </c-col>

        <c-col :span="12">
            <el-form-item label="Wait before 'Retry' " prop="srvpdb.rettim">
                <c-input
                    v-model="model.srvpdb.rettim"
                    placeholder="请输入Wait before 'Retry' "
                ></c-input>
            </el-form-item>
        </c-col>
    </div>
liushikai committed
26 27
</template>
<script>
liuxin committed
28
import Api from "~/service/Api";
wangren committed
29
import commonProcess from "~/mixin/commonProcess";
liuxin committed
30 31
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Mgrtsk/Event";
liushikai committed
32 33

export default {
liuxin committed
34 35
    inject: ["root"],
    props: ["model", "codes"],
wangren committed
36
    mixins: [commonProcess],
liuxin committed
37 38
    data() {
        return {};
liushikai committed
39
    },
liuxin committed
40 41 42
    methods: { ...Event },
    created: function () {},
};
liushikai committed
43
</script>
liuxin committed
44 45 46 47 48 49 50 51 52 53
<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>