fix: 修复刷新时背景乱码
All checks were successful
continuous-integration/drone/push Build is passing

#mainLoading 背景从半透明 rgba(255,255,255,0.6) 改为
与页面一致的不透明渐变背景,覆盖住 Vue 未编译的模板
语法(花括号等),避免刷新时透出乱码
This commit is contained in:
yiqiu
2026-03-20 09:09:44 +08:00
parent 8db4190147
commit 0d5b39fec6

View File

@@ -16,11 +16,17 @@ html, body {
} }
#mainLoading { #mainLoading {
background: rgba(255,255,255,0.6) !important; background: linear-gradient(135deg, #e8f0fe 0%, #f0e6ff 30%, #dbeafe 60%, #e0f2fe 100%) !important;
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
z-index: 9999 !important;
} }
#mainLoading.pro-des::before { #mainLoading.pro-des::before {
background: rgba(255,255,255,0.6) !important; background: linear-gradient(135deg, #e8f0fe 0%, #f0e6ff 30%, #dbeafe 60%, #e0f2fe 100%) !important;
} }
.template:first-child { .template:first-child {