hookehuyr

style(collectionSettings): 修改状态颜色并禁止点击遮罩层关闭弹窗

将状态颜色从绿色(#52c41a)调整为橙色(#fb923c)以提高视觉一致性
为两个弹窗添加close-on-click-overlay=false属性防止误触关闭
......@@ -54,7 +54,7 @@
color: #999;
&.status-set {
color: #52c41a;
color: #fb923c;
}
}
......
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-06 12:03:17
* @LastEditTime: 2025-08-06 12:40:14
* @FilePath: /jgdl/src/pages/collectionSettings/index.vue
* @Description: 收款设置
-->
......@@ -43,6 +43,7 @@
position="bottom"
:style="{ width: '100%', height: '85%' }"
:catch-move="true"
:close-on-click-overlay="false"
closeable
close-icon-position="top-right"
@close="closeAccountModal"
......@@ -116,6 +117,7 @@
position="bottom"
:style="{ width: '100%', height: '85%' }"
:catch-move="true"
:close-on-click-overlay="false"
closeable
close-icon-position="top-right"
@close="closeIdentityModal"
......