Finalize.vue 1.03 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.srvfin.exeflg"
13
                >将订单标记为已完成</c-checkbox
liuxin committed
14 15 16
            >
        </c-col>
    </div>
liushikai committed
17 18
</template>
<script>
liuxin committed
19
import Api from "~/service/Api";
wangren committed
20
import commonProcess from "~/mixin/commonProcess";
liuxin committed
21 22
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Mgrtsk/Event";
liushikai committed
23 24

export default {
liuxin committed
25 26
    inject: ["root"],
    props: ["model", "codes"],
wangren committed
27
    mixins: [commonProcess],
liuxin committed
28 29
    data() {
        return {};
liushikai committed
30
    },
liuxin committed
31 32 33
    methods: { ...Event },
    created: function () {},
};
liushikai committed
34
</script>
liuxin committed
35 36 37 38 39 40 41 42 43 44
<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>