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

        <c-col :span="12">
            <c-checkbox v-model="model.srvgpi.exeflg"
13
                >GPI</c-checkbox
liuxin committed
14 15 16 17
            >
        </c-col>

        <c-col :span="12">
18
            <el-form-item label="重试前等待时间" prop="srvgpi.rettim">
liuxin committed
19 20
                <c-input
                    v-model="model.srvgpi.rettim"
21
                    placeholder="请输入重试前等待时间"
liuxin committed
22 23 24 25
                ></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
<style scoped>
.el-col >>> .el-divider--horizontal {
  margin-top: 5px;
}
.messageLabel >>> .el-form-item__label{
    text-align: left;
    font-weight:bold;
    font-size: 12px;
}
liushikai committed
53
</style>