Skip to content

Commit 41f458d

Browse files
committed
fix: 弹窗报错信息和主题模式的按钮存在显示问题
Closes #IC1KD8
1 parent 2127545 commit 41f458d

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

src/views/login/index.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,12 @@ const onOauth = async (source: string) => {
283283
position: fixed;
284284
top: 20px;
285285
right: 30px;
286-
z-index: 9999;
286+
z-index: 999;
287+
}
288+
289+
// 新增弹窗层级设置
290+
.arco-modal-wrapper {
291+
z-index: 1000;
287292
}
288293
289294
.footer {
@@ -489,7 +494,12 @@ const onOauth = async (source: string) => {
489494
position: fixed;
490495
top: 20px;
491496
right: 30px;
492-
z-index: 9999;
497+
z-index: 999;
498+
}
499+
500+
// 新增弹窗层级设置
501+
.arco-modal-wrapper {
502+
z-index: 1000;
493503
}
494504
495505
.footer {

src/views/login/pwdExpired/index.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,12 @@ const logo = computed(() => appStore.getLogo())
178178
position: fixed;
179179
top: 20px;
180180
right: 30px;
181-
z-index: 9999;
181+
z-index: 999;
182+
}
183+
184+
// 新增弹窗层级设置
185+
.arco-modal-wrapper {
186+
z-index: 1000;
182187
}
183188
184189
.footer {
@@ -385,7 +390,12 @@ const logo = computed(() => appStore.getLogo())
385390
position: fixed;
386391
top: 20px;
387392
right: 30px;
388-
z-index: 9999;
393+
z-index: 999;
394+
}
395+
396+
// 新增弹窗层级设置
397+
.arco-modal-wrapper {
398+
z-index: 1000;
389399
}
390400
391401
.footer {

0 commit comments

Comments
 (0)