Commit 76b8090e authored by 罗超's avatar 罗超

1

parent 370b8363
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -154,14 +154,14 @@
<span v-if="baseObj.IsOpenExamApply === 0"></span>
</div>
</div>
<div class="Period_Spreate">
<div class="Period_Spreate" v-if="baseObj.IsOpenZuJuan === 1">
<div class="Period-rule-title">组卷审核人</div>
<div>
{{ baseObj.ZuJuanReviewerName }}
</div>
</div>
</div>
<div class="Period-rules">
<div class="Period-rules" v-if="baseObj.IsOpenExamApply === 1">
<div class="Period_Spreate">
<div class="Period-rule-title">考试申请审核人</div>
<div>{{ baseObj.ExamApplyReviewerName }}</div>
......@@ -193,7 +193,7 @@
></el-switch>
</div>
<div class="examConfig_title">
是否开启组卷审批
是否开启自动阅卷
<el-switch
style="margin-left: 10px"
v-model="addMsg.IsOpenAutoMarking"
......@@ -204,7 +204,7 @@
></el-switch>
</div>
<div class="examConfig_title">
是否开启组卷审批
是否开启考试申请
<el-switch
style="margin-left: 10px"
v-model="addMsg.IsOpenExamApply"
......@@ -215,7 +215,7 @@
></el-switch>
</div>
<div>
<div v-if="baseObj.IsOpenZuJuan === 1">
<q-select
filled
stack-label
......@@ -241,7 +241,7 @@
</template>
</q-select>
</div>
<div>
<div v-if="baseObj.IsOpenExamApply === 1">
<q-select
filled
stack-label
......
......@@ -275,6 +275,22 @@
@close="closeBillForm"
@success="refreshPage"
></leaveBillForm>
<!-- 组卷审批 -->
<zujuanBillForm
v-if="isShowZujuanBillForm"
:seting-obj="billObj"
:showType="showType"
@close="closeBillForm"
@success="refreshPage"
></zujuanBillForm>
<!-- 考试申请 -->
<examBillForm
v-if="isShowExamBillForm"
:seting-obj="billObj"
:showType="showType"
@close="closeBillForm"
@success="refreshPage"
></examBillForm>
</div>
</div>
</template>
......@@ -292,6 +308,8 @@ import createbackbillForm from "../../components/sale/createbackbill-form";
import ordertransForm from "../../components/sale/ordertrans-form";
import temporaryClassForm from "../../components/sale/temporaryClassbill-form";
import leaveBillForm from "../../components/sale/leavebill-form.vue";
import zujuanBillForm from "../../components/sale/zujuanbill-form.vue";
import examBillForm from "../../components/sale/exambill-form.vue";
export default {
meta: {
title: "业务单据",
......@@ -304,6 +322,8 @@ export default {
ordertransForm,
temporaryClassForm,
leaveBillForm,
zujuanBillForm,
examBillForm,
},
data() {
return {
......@@ -395,6 +415,8 @@ export default {
isShowClassTrans: false, //是否显示订单转班详情
isShowTemporaryClass: false, //是否显示临时上课邀请订单详情
isShowLeaveBillForm: false, //是否显示请假申请单详情
isShowZujuanBillForm: false, //是否显示组卷申请单详情
isShowExamBillForm: false, //是否显示考试申请详情
};
},
created() {
......@@ -443,6 +465,8 @@ export default {
this.isShowClassTrans = false;
this.isShowTemporaryClass = false;
this.isShowLeaveBillForm = false;
this.isShowZujuanBillForm = false;
this.isShowExamBillForm = false;
this.billObj = {};
},
//显示表单
......@@ -471,6 +495,14 @@ export default {
else if (item.ReceiptType == 7) {
this.isShowLeaveBillForm = true;
}
//组卷
else if (item.ReceiptType == 8) {
this.isShowZujuanBillForm = true;
}
//考试申请
else if (item.ReceiptType == 9) {
this.isShowExamBillForm = true;
}
this.showType = type;
this.billObj = item;
},
......@@ -515,6 +547,8 @@ export default {
this.isShowStopBillForm = false;
this.isShowClassTrans = false;
this.isShowLeaveBillForm = false;
this.isShowZujuanBillForm = false;
this.isShowExamBillForm = false;
this.billObj = {};
this.getStuBackBill();
},
......
......@@ -1072,6 +1072,11 @@ const routes = [{
component: () =>
import("pages/exam/paperPublish")
},
{
path: "/exam/paperPublishReadonly", //试卷发布考试-只读
component: () =>
import("pages/exam/paperPublishReadonly")
},
{
path: "/exam/examineeManager", //试卷-考生管理
component: () =>
......
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