Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
76b8090e
Commit
76b8090e
authored
Aug 20, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
370b8363
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1885 additions
and
6 deletions
+1885
-6
exambill-form.vue
src/components/sale/exambill-form.vue
+614
-0
zujuanbill-form.vue
src/components/sale/zujuanbill-form.vue
+662
-0
paperPublishReadonly.vue
src/pages/exam/paperPublishReadonly.vue
+564
-0
examConfig.vue
src/pages/system/examConfig.vue
+6
-6
changeClassManager.vue
src/pages/teacher/changeClassManager.vue
+34
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/components/sale/exambill-form.vue
0 → 100644
View file @
76b8090e
This diff is collapsed.
Click to expand it.
src/components/sale/zujuanbill-form.vue
0 → 100644
View file @
76b8090e
This diff is collapsed.
Click to expand it.
src/pages/exam/paperPublishReadonly.vue
0 → 100644
View file @
76b8090e
This diff is collapsed.
Click to expand it.
src/pages/system/examConfig.vue
View file @
76b8090e
...
...
@@ -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
...
...
src/pages/teacher/changeClassManager.vue
View file @
76b8090e
...
...
@@ -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
();
},
...
...
src/router/routes.js
View file @
76b8090e
...
...
@@ -1072,6 +1072,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/exam/paperPublish"
)
},
{
path
:
"/exam/paperPublishReadonly"
,
//试卷发布考试-只读
component
:
()
=>
import
(
"pages/exam/paperPublishReadonly"
)
},
{
path
:
"/exam/examineeManager"
,
//试卷-考生管理
component
:
()
=>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment