Commit f6db8716 authored by zhengke's avatar zhengke

修改

parent b7bf1364
This diff is collapsed.
This diff is collapsed.
......@@ -47,6 +47,10 @@
<!-- 请假流程 -->
<leave-form></leave-form>
</template>
<template v-if="tabCheck == '8'">
<!-- 投稿审批 -->
<tougao-form></tougao-form>
</template>
</div>
</div>
</template>
......@@ -58,6 +62,7 @@ import transferForm from "../../components/flow/transfer-form";
import temporaryClassForm from "../../components/flow/temporaryClass-form";
import separateForm from "../../components/flow/separate-form";
import leaveForm from "../../components/flow/leave-form";
import tougaoForm from "../../components/flow/tougao-form";
export default {
meta: {
title: "流程设置",
......@@ -70,6 +75,7 @@ export default {
temporaryClassForm,
separateForm,
leaveForm,
tougaoForm
},
data() {
return {
......@@ -102,6 +108,10 @@ export default {
name: "7",
label: "请假流程",
},
{
name: "8",
label: "投稿审批"
}
],
tabCheck: "1",
};
......
......@@ -160,6 +160,9 @@
<!-- 考试申请 -->
<examBillForm v-if="isShowExamBillForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"></examBillForm>
<!-- 投稿审批 -->
<tougaoForm v-if="isShowTougaoForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"></tougaoForm>
</div>
</div>
</template>
......@@ -179,6 +182,7 @@
import leaveBillForm from "../../components/sale/leavebill-form.vue";
import zujuanBillForm from "../../components/sale/zujuanbill-form.vue";
import examBillForm from "../../components/sale/exambill-form.vue";
import tougaoForm from "../../components/sale/tougao-form.vue";
export default {
meta: {
title: "业务单据",
......@@ -193,6 +197,7 @@
leaveBillForm,
zujuanBillForm,
examBillForm,
tougaoForm
},
data() {
return {
......@@ -284,6 +289,7 @@
isShowLeaveBillForm: false, //是否显示请假申请单详情
isShowZujuanBillForm: false, //是否显示组卷申请单详情
isShowExamBillForm: false, //是否显示考试申请详情
isShowTougaoForm: false //是否显示投稿申请详情
};
},
created() {
......@@ -340,6 +346,7 @@
this.isShowLeaveBillForm = false;
this.isShowZujuanBillForm = false;
this.isShowExamBillForm = false;
this.isShowTougaoForm = false;
this.billObj = {};
},
//显示表单
......@@ -376,6 +383,10 @@
else if (item.ReceiptType == 9) {
this.isShowExamBillForm = true;
}
//投稿审批
else if (item.ReceiptType == 10){
this.isShowTougaoForm = true;
}
this.showType = type;
this.billObj = item;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment