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:
@@ -492,7 +492,7 @@
|
||||
item.type === 11 ||
|
||||
item.type === 12 ||
|
||||
item.type === 9
|
||||
? commonModel(item)
|
||||
? commonModel(item, value.name)
|
||||
: item.type === 2
|
||||
? faceTeachModel(item)
|
||||
: item.type === 4
|
||||
@@ -1118,7 +1118,7 @@
|
||||
<!-- 作业管理抽屉 结束-->
|
||||
|
||||
<!-- 公共管理抽屉 开始-->
|
||||
<router-common-manage v-model:CommonModelVisible="commonModelVisible" :title="commonModelVisibleTitle" :datasource="commonData" />
|
||||
<router-common-manage v-model:CommonModelVisible="commonModelVisible" :title="commonModelVisibleTitle" :datasource="commonData" :levelName="commonLevelName" />
|
||||
<!-- 公共管理抽屉 结束-->
|
||||
</div>
|
||||
</template>
|
||||
@@ -1360,7 +1360,8 @@ export default {
|
||||
examinationData: '',
|
||||
evaluationData: '',
|
||||
homeworkData: '',
|
||||
commonData: ''
|
||||
commonData: '',
|
||||
commonLevelName: ''
|
||||
|
||||
});
|
||||
|
||||
@@ -1660,7 +1661,8 @@ export default {
|
||||
// 作业弹框名称 RouterHomeworkManage
|
||||
}
|
||||
// 在线、案例、外链、评估、直播、活动点击管理弹框
|
||||
const commonModel = (data) => {
|
||||
const commonModel = (data, levelname) => {
|
||||
state.commonLevelName = levelname;
|
||||
console.log(data)
|
||||
state.commonModelVisible = true;
|
||||
state.commonModelVisibleTitle = data.name;
|
||||
|
||||
Reference in New Issue
Block a user