feat:增加项目/学习路径图评估管理列表部分数据接入

This commit is contained in:
wyx
2023-01-04 16:02:50 +08:00
parent 772c5e19e5
commit 55a4694e8a
6 changed files with 348 additions and 152 deletions

View File

@@ -613,14 +613,16 @@
item.type == '11'
? showOnline(
item.name,
item.projectTaskId,
item.type
item.projectTaskId,
item.type,
item,
value.name
)
: item.type == '2'
? showFace(
item.name,
item.projectTaskId,
item.type
item.type,
)
: item.type == '4'
? showWork(item.name, item.projectTaskId)
@@ -1095,6 +1097,8 @@
:projectTaskId="projectTaskId"
:title="showTimeText"
:itemsType="itemstype"
:datasource="commonData"
:levelName="commonLevelName"
/>
<!-- 面授管理抽屉 -->
@@ -2447,6 +2451,8 @@ export default {
codeInfo: null, //二维码标题
examData: "",
commonData: "",
commonLevelName: ""
});
const levelList = reactive({
@@ -2693,8 +2699,11 @@ export default {
state.TaskFaceImpStuvisible = true;
};
//在线、案例、外链、讨论、评估、直播、活动管理页面
const showOnline = (name, id, type) => {
console.log("点击管理并传了id");
const showOnline = (name, id, type, datasource, levelname) => {
console.log("点击管理并传了id", datasource);
state.commonLevelName = levelname;
state.commonData = datasource;
state.onlineVisible = true;
state.showTimeText = name;
state.projectTaskId = id;