diff --git a/src/components/drawers/AddOnline.vue b/src/components/drawers/AddOnline.vue index bb233e23..c9485506 100644 --- a/src/components/drawers/AddOnline.vue +++ b/src/components/drawers/AddOnline.vue @@ -17,7 +17,7 @@
- + {{ taskIndex === -1 ? "选择/新建课程" : "重新选择" }} @@ -53,6 +53,7 @@ const props = defineProps({ taskList: [], chapterList: [] }); + const visible = ref(false); const onlineRef = ref(false); const taskIndex = ref(-1); @@ -137,7 +138,6 @@ function confirm() { } function selectCourse(row) { - console.log(row); if (!props.courseSyncFlag && row.refId != props.id) { message.warning("请新建本项目在线课!"); return; diff --git a/src/components/drawers/CreateOnline.vue b/src/components/drawers/CreateOnline.vue index 9a65e3dc..d8460433 100644 --- a/src/components/drawers/CreateOnline.vue +++ b/src/components/drawers/CreateOnline.vue @@ -14,7 +14,7 @@