From 7e8b80782512e04c86f80764d0519171909d0d9a Mon Sep 17 00:00:00 2001 From: 670788339 <670788339@qq.com> Date: Wed, 12 Nov 2025 10:19:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E6=8F=90=E7=A4=BA=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/components/Course/courseForm.vue | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/components/Course/courseForm.vue b/src/components/Course/courseForm.vue index 77ac78fe..55c56764 100644 --- a/src/components/Course/courseForm.vue +++ b/src/components/Course/courseForm.vue @@ -1014,6 +1014,16 @@ export default { // 滚动到可见区域 currentElement.scrollIntoView({ behavior: 'smooth', block: 'center' }); + // // 特殊处理录播课标签位置,避免被遮挡 + if (this.courseInfo.type === 20 && this.currentStep === 1) { + console.info('-- 特殊处理录播课标签位置 -- ') + this.highlightStyle = { + top: `252.513px`, + left: `${rect.left}px`, + width: `${rect.width}px`, + height: `${rect.height}px`, + }; + } } }, // 下一步 @@ -1985,12 +1995,14 @@ export default { } .guidance-content { + position: fixed; background: white; border-radius: 8px; padding: 24px; max-width: 500px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); z-index: 10000; + top: 0%; } .guidance-title {