build(deps): update deps
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-24 16:02:44 +08:00
parent 097029128c
commit 8e119162f1
22 changed files with 2212 additions and 377 deletions

View File

@@ -204,6 +204,7 @@ const confirmPay = async () => {
title: '支付成功',
icon: 'success',
});
isLoading.value = false;
},
fail: function () {
Taro.showToast({
@@ -217,7 +218,7 @@ const confirmPay = async () => {
url: `/pages/users/order_list/index?type=0`,
});
}, 2000);
isLoading.value = false;
// isLoading.value = false;
},
});
} catch (err) {
@@ -226,7 +227,7 @@ const confirmPay = async () => {
icon: 'none',
});
} finally {
isLoading.value = false;
// isLoading.value = false;
}
};