Commit f291167262d9b63b4971ba946e0c7d81075c7189
1 parent
87693115
优化弹窗
Showing
1 changed file
with
1 additions
and
1 deletions
apps/web-payment/src/views/payment/index.vue
| ... | ... | @@ -179,9 +179,9 @@ const handlepayBtnShowClick = async (pipeline: Pipeline) => { |
| 179 | 179 | if (channelName.includes('园区卡') || channelName.includes('卡支付')) { |
| 180 | 180 | // 如果还没有加载园区卡列表,先加载 |
| 181 | 181 | if (cardList.value.length === 0) { |
| 182 | + showCardDialog.value = true; | |
| 182 | 183 | await getListUserCards(); |
| 183 | 184 | } |
| 184 | - showCardDialog.value = true; | |
| 185 | 185 | } else { |
| 186 | 186 | // 切换到其他支付方式时,清空已选择的园区卡 |
| 187 | 187 | selectedCard.value = null; | ... | ... |