提交 3db2a188 authored 作者: matian's avatar matian

隐藏测试课程

上级 03163d04
......@@ -15,7 +15,7 @@ export default [
title_list: ['清华五道口金融学院硕士生导师首席经济学家', '清华五道口金融学院硕士生导师首席经济学家']
}
],
child_ids: ['1-1', '1-2', '1-3', '1-4', '1-5', '1-6', '1-7', '1-8'],
child_ids: ['1-1', '1-2', '1-3', '1-4', '1-5', '1-6', '1-7', '1-8', '1-x', '1-y'],
course_card: '知名导师专家',
course_compulsory: 6,
course_elective: 2,
......
......@@ -12,7 +12,13 @@ const page = reactive({ size: 10, currentPage: 1 })
// 筛选之后的数据
const courseFilterList = $computed(() => {
return props.courseList.filter((item: any) => item.category === props.type || props.type === '')
if (props.type === 'PAAP(Ⅰ)' || props.type === '') {
return props.courseList.filter(
(item: any) => (item.category === props.type || props.type === '') && item.is_test === false
)
} else {
return props.courseList.filter((item: any) => item.category === props.type)
}
})
// 当前页的数据
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论