BUG 课程库下 1、面授课列表 里 学习人数 = 该面授课所有开课的学员数总和 再去重 2、面授课列表里 是否停用列 有的是-1

This commit is contained in:
李东进1
2023-02-18 19:31:57 +08:00
parent f63b5446d3
commit 1739f9a18b
2 changed files with 4 additions and 1 deletions

View File

@@ -1727,6 +1727,8 @@ const columns1 = [
return "停用"; return "停用";
case "1": case "1":
return "启用"; return "启用";
case "-1":
return "已删除";
} }
}, },
}, },

View File

@@ -369,7 +369,7 @@ export default defineComponent({
// 课程三级分类 // 课程三级分类
}); });
const store = useStore(); const store = useStore();
console.log(store,666);
const sysTypeOptions = computed(() => store.state.content_type); const sysTypeOptions = computed(() => store.state.content_type);
const optionsUrl = computed(() => store.state.course_pic); const optionsUrl = computed(() => store.state.course_pic);
@@ -513,6 +513,7 @@ export default defineComponent({
// 点击图片选择图片 // 点击图片选择图片
const choicePic = (value) => { const choicePic = (value) => {
console.log(111111112);
state.feng_mian_1 = value; state.feng_mian_1 = value;
} }