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