From d78cc1f97c62173c9450085d5babe017fabec33e Mon Sep 17 00:00:00 2001
From: 670788339 <670788339@qq.com>
Date: Thu, 13 Nov 2025 09:00:48 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E9=80=89=E6=8B=A9?=
=?UTF-8?q?=E5=90=8E=E7=9B=B4=E6=8E=A5=E5=85=B3=E9=97=AD=E4=B8=8B=E6=8B=89?=
=?UTF-8?q?=E6=A1=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/Course/courseTag.vue | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/components/Course/courseTag.vue b/src/components/Course/courseTag.vue
index 196fe865..b494f4a2 100644
--- a/src/components/Course/courseTag.vue
+++ b/src/components/Course/courseTag.vue
@@ -217,7 +217,9 @@ export default {
this.$emit('change', this.displayTags);
this.clearInput();
- this.$refs.tagSelect.visible = false;
+ this.$nextTick(() => {
+ this.$refs.tagSelect.visible = false;
+ });
},
clearInput() {
From 6ee8eaca001aee3e4705500183a29bb66ac753d9 Mon Sep 17 00:00:00 2001
From: 670788339 <670788339@qq.com>
Date: Thu, 13 Nov 2025 14:29:23 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E8=AF=BE=E7=A8=8B=E5=BA=93=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/portal/course/Index.vue | 164 ++++++++----------------------
1 file changed, 40 insertions(+), 124 deletions(-)
diff --git a/src/views/portal/course/Index.vue b/src/views/portal/course/Index.vue
index de721c35..ef7d582b 100644
--- a/src/views/portal/course/Index.vue
+++ b/src/views/portal/course/Index.vue
@@ -71,25 +71,21 @@
-
+
-
+
-
-
+
@@ -114,11 +114,14 @@
-
+
+ @focus="onTagFocus" style="width: 95%;">
+
+
+
@@ -303,11 +306,14 @@
-->
-
+
+ @focus="onTagFocus" >
+
+
+
@@ -647,6 +653,9 @@ export default {
this.loadUserGroup();
},
methods: {
+ handleTagHelp(){
+ this.checkAndShowGuidance();
+ },
// 关键字的更改
changeKeywords(option){
if(option.target.value){
@@ -955,26 +964,26 @@ export default {
this.curCourseId = this.courseInfo.id
console.log('保存课程成功',this.curCourseId)
console.log('isTip ',this.courseInfo.isTip)
- if(this.courseInfo.isTip){
- // 检查是否为首次创建,显示引导
- this.checkAndShowGuidance();
- }
+ // if(this.courseInfo.isTip){
+ // // 检查是否为首次创建,显示引导
+ // this.checkAndShowGuidance();
+ // }
if (this.courseChooseId == 1) {
this.weike.dlgShow = true;
} else {
this.biaoke.dlgShow = true;
}
- this.$nextTick(() => {
- this.initTagComponent();
- // 如果显示引导,初始化高亮元素
- if (this.showGuidance) {
- this.$nextTick(() => {
- this.initGuidanceElements();
- this.highlightCurrentStep();
- });
- }
- });
+ // this.$nextTick(() => {
+ // this.initTagComponent();
+ // // 如果显示引导,初始化高亮元素
+ // if (this.showGuidance) {
+ // this.$nextTick(() => {
+ // this.initGuidanceElements();
+ // this.highlightCurrentStep();
+ // });
+ // }
+ // });
} else {
this.$message.error(rs.message);
}
@@ -983,15 +992,15 @@ export default {
// 检查并显示引导
checkAndShowGuidance() {
// 检查本地存储,判断是否为首次创建
- const hasShownGuidance = localStorage.getItem('course_creation_guidance_shown');
- if (!hasShownGuidance) {
- this.showGuidance = true;
- this.currentStep = 1;
- this.isFirstCreate = true;
- // 标记引导已显示
- localStorage.setItem('course_creation_guidance_shown', 'true');
- apiCourse.saveTip();
- }
+ // const hasShownGuidance = localStorage.getItem('course_creation_guidance_shown');
+ // if (!hasShownGuidance) {
+ this.showGuidance = true;
+ this.currentStep = 1;
+ this.isFirstCreate = true;
+ // 标记引导已显示
+ localStorage.setItem('course_creation_guidance_shown', 'true');
+ // apiCourse.saveTip();
+ // }
},
// 初始化引导元素
initGuidanceElements() {
@@ -2060,4 +2069,26 @@ export default {
position: relative;
z-index: 10001;
}
+//.el-form-item__content {
+// display: flex;
+// width: 80%;
+// .tag-container {
+// width: 95%;
+// }
+//}
+.tag-from-item .el-form-item__content {
+ margin-left: 0 !important;
+ display: flex;
+ //align-items: center;
+ .tag-container {
+ width: 95%;
+ }
+}
+.guidance-highlight .el-form-item__content {
+ margin-left: 0 !important;
+ display: flex;
+ width: 75%;
+}
+
+
From d3e891e5cc1c85865f0840ab6a2bb0db29a1fee5 Mon Sep 17 00:00:00 2001
From: 670788339 <670788339@qq.com>
Date: Fri, 14 Nov 2025 08:45:27 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E7=B2=BE=E5=93=81=E8=AF=BE=E5=AF=BC?=
=?UTF-8?q?=E8=88=AA=E6=A0=B7=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/portal/course/qualityCourse.vue | 259 ++++++++++++++++------
1 file changed, 191 insertions(+), 68 deletions(-)
diff --git a/src/views/portal/course/qualityCourse.vue b/src/views/portal/course/qualityCourse.vue
index e2f1e6f8..6ef8cc1a 100644
--- a/src/views/portal/course/qualityCourse.vue
+++ b/src/views/portal/course/qualityCourse.vue
@@ -56,23 +56,23 @@