Commit f6db8716 authored by zhengke's avatar zhengke

修改

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