fix(收款设置): 为账户和身份模态框添加滑动捕获属性
添加 :catch-move="true" 属性以防止模态框内容滑动时触发底层页面滚动
Showing
1 changed file
with
3 additions
and
1 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-05 18:05:59 | 4 | + * @LastEditTime: 2025-08-05 18:35:51 |
| 5 | * @FilePath: /jgdl/src/pages/collectionSettings/index.vue | 5 | * @FilePath: /jgdl/src/pages/collectionSettings/index.vue |
| 6 | * @Description: 收款设置 | 6 | * @Description: 收款设置 |
| 7 | --> | 7 | --> |
| ... | @@ -42,6 +42,7 @@ | ... | @@ -42,6 +42,7 @@ |
| 42 | v-model:visible="showAccountModal" | 42 | v-model:visible="showAccountModal" |
| 43 | position="bottom" | 43 | position="bottom" |
| 44 | :style="{ width: '100%', height: '80%' }" | 44 | :style="{ width: '100%', height: '80%' }" |
| 45 | + :catch-move="true" | ||
| 45 | closeable | 46 | closeable |
| 46 | close-icon-position="top-right" | 47 | close-icon-position="top-right" |
| 47 | @close="closeAccountModal" | 48 | @close="closeAccountModal" |
| ... | @@ -98,6 +99,7 @@ | ... | @@ -98,6 +99,7 @@ |
| 98 | v-model:visible="showIdentityModal" | 99 | v-model:visible="showIdentityModal" |
| 99 | position="bottom" | 100 | position="bottom" |
| 100 | :style="{ width: '100%', height: '80%' }" | 101 | :style="{ width: '100%', height: '80%' }" |
| 102 | + :catch-move="true" | ||
| 101 | closeable | 103 | closeable |
| 102 | close-icon-position="top-right" | 104 | close-icon-position="top-right" |
| 103 | @close="closeIdentityModal" | 105 | @close="closeIdentityModal" | ... | ... |
-
Please register or login to post a comment