hookehuyr

fix(收款设置): 为账户和身份模态框添加滑动捕获属性

添加 :catch-move="true" 属性以防止模态框内容滑动时触发底层页面滚动
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-05 18:05:59
* @LastEditTime: 2025-08-05 18:35:51
* @FilePath: /jgdl/src/pages/collectionSettings/index.vue
* @Description: 收款设置
-->
......@@ -42,6 +42,7 @@
v-model:visible="showAccountModal"
position="bottom"
:style="{ width: '100%', height: '80%' }"
:catch-move="true"
closeable
close-icon-position="top-right"
@close="closeAccountModal"
......@@ -98,6 +99,7 @@
v-model:visible="showIdentityModal"
position="bottom"
:style="{ width: '100%', height: '80%' }"
:catch-move="true"
closeable
close-icon-position="top-right"
@close="closeIdentityModal"
......