From c9c714ddfabef5268b65ebf83e8a8e9e802787df Mon Sep 17 00:00:00 2001 From: huweihang Date: Mon, 15 Dec 2025 17:30:38 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=9B=B4=E6=96=B0index.scss=E4=BB=A5?= =?UTF-8?q?=E5=A2=9E=E5=BC=BA=E6=8C=89=E9=92=AE=E7=9A=84=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=E5=AF=B9=E6=AF=94=E5=BA=A6=EF=BC=9B=E8=B0=83=E6=95=B4ManageLis?= =?UTF-8?q?tRemote.vue=E4=B8=AD=E7=9A=84=E8=BF=87=E6=BB=A4=E5=99=A8?= =?UTF-8?q?=E5=B8=83=E5=B1=80=EF=BC=8C=E4=BC=98=E5=8C=96=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E4=BD=93=E9=AA=8C=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/styles/index.scss | 4 ++-- src/views/course/ManageListRemote.vue | 24 +++++++++++++++--------- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 1339db98..23bc4561 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -473,8 +473,8 @@ li{ } .el-button--default { - color: rgba(0, 0, 0, .2); - border-color: rgba(0, 0, 0, .1); + color: rgba(0, 0, 0, .3); + border-color: rgba(0, 0, 0, .3); background-color: #FFFFFF; } diff --git a/src/views/course/ManageListRemote.vue b/src/views/course/ManageListRemote.vue index 03a9823d..150f2c44 100644 --- a/src/views/course/ManageListRemote.vue +++ b/src/views/course/ManageListRemote.vue @@ -63,13 +63,6 @@ -
- - - - -
-
@@ -87,6 +80,12 @@
+
+ + + + +
@@ -179,7 +178,7 @@ @@ -1116,7 +1115,14 @@ export default { this.$showMessage('置顶成功!', 'success') this.searchData(); } else if (res.status === 500) { - this.$showMessage('已置顶10条课程,若需继续置顶,请对部分课程执行取消置顶操作', 'error'); + const confirmText = `已置顶10条课程,若需继续置顶,请对部分课程执行取消置顶操作`; + this.$confirm(confirmText, '置顶确认', { + confirmButtonText: '确定', + cancelButtonText: '取消', + dangerouslyUseHTMLString: true, + type: 'warning', + customClass: 'custom-confirm-dialog' + }).then(() => {}).catch(() => { }); } else { this.$showMessage(res.message, 'error'); }