style(collectionSettings): 修改状态颜色并禁止点击遮罩层关闭弹窗
将状态颜色从绿色(#52c41a)调整为橙色(#fb923c)以提高视觉一致性 为两个弹窗添加close-on-click-overlay=false属性防止误触关闭
Showing
2 changed files
with
4 additions
and
2 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-09-19 14:11:06 | 2 | * @Date: 2022-09-19 14:11:06 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-08-06 12:03:17 | 4 | + * @LastEditTime: 2025-08-06 12:40:14 |
| 5 | * @FilePath: /jgdl/src/pages/collectionSettings/index.vue | 5 | * @FilePath: /jgdl/src/pages/collectionSettings/index.vue |
| 6 | * @Description: 收款设置 | 6 | * @Description: 收款设置 |
| 7 | --> | 7 | --> |
| ... | @@ -43,6 +43,7 @@ | ... | @@ -43,6 +43,7 @@ |
| 43 | position="bottom" | 43 | position="bottom" |
| 44 | :style="{ width: '100%', height: '85%' }" | 44 | :style="{ width: '100%', height: '85%' }" |
| 45 | :catch-move="true" | 45 | :catch-move="true" |
| 46 | + :close-on-click-overlay="false" | ||
| 46 | closeable | 47 | closeable |
| 47 | close-icon-position="top-right" | 48 | close-icon-position="top-right" |
| 48 | @close="closeAccountModal" | 49 | @close="closeAccountModal" |
| ... | @@ -116,6 +117,7 @@ | ... | @@ -116,6 +117,7 @@ |
| 116 | position="bottom" | 117 | position="bottom" |
| 117 | :style="{ width: '100%', height: '85%' }" | 118 | :style="{ width: '100%', height: '85%' }" |
| 118 | :catch-move="true" | 119 | :catch-move="true" |
| 120 | + :close-on-click-overlay="false" | ||
| 119 | closeable | 121 | closeable |
| 120 | close-icon-position="top-right" | 122 | close-icon-position="top-right" |
| 121 | @close="closeIdentityModal" | 123 | @close="closeIdentityModal" | ... | ... |
-
Please register or login to post a comment