mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-14 05:16:45 +08:00
feat:增加项目/学习路径图 测评学员列表及数据导出
This commit is contained in:
@@ -500,7 +500,7 @@
|
||||
: item.type === 5
|
||||
? examinationModel(item, value.name)
|
||||
: item.type === 10
|
||||
? evaluationModel(item)
|
||||
? evaluationModel(item, value.name)
|
||||
: null
|
||||
"
|
||||
>
|
||||
@@ -1110,7 +1110,7 @@
|
||||
<!-- 考试管理抽屉 结束-->
|
||||
|
||||
<!-- 测评管理抽屉 开始-->
|
||||
<router-evaluation-manage v-model:EvaluationModelVisible="evaluationModelVisible" :title="evaluationModelVisibleTitle" :datasource="evaluationData" />
|
||||
<router-evaluation-manage v-model:EvaluationModelVisible="evaluationModelVisible" :title="evaluationModelVisibleTitle" :datasource="evaluationData" :levelName="evaluationLevelName" />
|
||||
<!-- 测评管理抽屉 结束-->
|
||||
|
||||
<!-- 作业管理抽屉 开始-->
|
||||
@@ -1362,7 +1362,8 @@ export default {
|
||||
homeworkData: '',
|
||||
commonData: '',
|
||||
commonLevelName: '',
|
||||
examLevelName: ''
|
||||
examLevelName: '',
|
||||
evaluationLevelName: ''
|
||||
});
|
||||
|
||||
const levelList = reactive({
|
||||
@@ -1646,8 +1647,9 @@ export default {
|
||||
// 考试弹框名称 RouterExaminationManage
|
||||
}
|
||||
// 测评点击管理弹框
|
||||
const evaluationModel = (data) => {
|
||||
const evaluationModel = (data, levelname) => {
|
||||
console.log(data)
|
||||
state.evaluationLevelName = levelname;
|
||||
state.evaluationModelVisible = true;
|
||||
state.evaluationModelVisibleTitle = data.name;
|
||||
state.evaluationData = data;
|
||||
|
||||
Reference in New Issue
Block a user