mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
style:增加 路径图-外部考试-管理/导入成绩
This commit is contained in:
@@ -1268,14 +1268,23 @@
|
||||
/>
|
||||
<!-- 面授管理抽屉 结束-->
|
||||
|
||||
<!-- 考试管理抽屉 开始-->
|
||||
<!-- 系统考试管理抽屉 开始-->
|
||||
<router-examination-manage
|
||||
v-model:ExaminationModelVisible="examinationModelVisible"
|
||||
:title="examinationModelVisibleTitle"
|
||||
:datasource="examinationData"
|
||||
:levelName="examLevelName"
|
||||
/>
|
||||
<!-- 考试管理抽屉 结束-->
|
||||
<!-- 系统考试管理抽屉 结束-->
|
||||
|
||||
<!-- 外部考试管理抽屉 开始-->
|
||||
<router-examination-external-manage
|
||||
v-model:ExaminationExaminaModelVisible="examinationExaminaModelVisible"
|
||||
:title="examinationModelVisibleTitle"
|
||||
:datasource="examinationData"
|
||||
:levelName="examLevelName"
|
||||
/>
|
||||
<!-- 外部考试管理抽屉 结束-->
|
||||
|
||||
<!-- 测评管理抽屉 开始-->
|
||||
<router-evaluation-manage
|
||||
@@ -1353,6 +1362,7 @@ import { getStuPage, moveStudent } from "@/api/index1";
|
||||
|
||||
import RouterFaceTeachManage from "../../components/drawers/router/RouterFaceTeachManage";
|
||||
import RouterExaminationManage from "../../components/drawers/router/RouterExaminationManage";
|
||||
import RouterExaminationExternalManage from "../../components/drawers/router/RouterExaminationExternalManage";
|
||||
import RouterEvaluationManage from "../../components/drawers/router/RouterEvaluationManage";
|
||||
import RouterHomeworkManage from "../../components/drawers/router/RouterHomeworkManage";
|
||||
import RouterCommonManage from "../../components/drawers/router/RouterCommonManage";
|
||||
@@ -1379,6 +1389,7 @@ export default {
|
||||
|
||||
RouterFaceTeachManage,
|
||||
RouterExaminationManage,
|
||||
RouterExaminationExternalManage,
|
||||
RouterEvaluationManage,
|
||||
RouterHomeworkManage,
|
||||
RouterCommonManage,
|
||||
@@ -1558,6 +1569,7 @@ export default {
|
||||
pjModelVisible: false,
|
||||
faceTeachModelVisible: false,
|
||||
examinationModelVisible: false,
|
||||
examinationExaminaModelVisible: false,
|
||||
evaluationModelVisible: false,
|
||||
homeworkModelVisible: false,
|
||||
commonModelVisible: false,
|
||||
@@ -1877,8 +1889,14 @@ export default {
|
||||
// 考试点击管理弹框
|
||||
const examinationModel = (data, levelname) => {
|
||||
console.log(data);
|
||||
if(data.startTime==null && data.endTime==null){
|
||||
// 外部考试
|
||||
state.examinationExaminaModelVisible = true;
|
||||
}else{
|
||||
// 系统考试
|
||||
state.examinationModelVisible = true;
|
||||
}
|
||||
state.examLevelName = levelname;
|
||||
state.examinationModelVisible = true;
|
||||
state.examinationModelVisibleTitle = data.name;
|
||||
state.examinationData = data;
|
||||
// 考试弹框名称 RouterExaminationManage
|
||||
|
||||
Reference in New Issue
Block a user