fix: 代客下单购物车栏目微信支付宝,现金快捷支付功能修复

This commit is contained in:
YeMingfei666 2025-03-12 15:22:51 +08:00
parent 39bc49029a
commit 6ba5c1b536
1 changed files with 6 additions and 2 deletions

View File

@ -385,11 +385,15 @@ async function createOrder(key) {
showOrder.value = true; showOrder.value = true;
if (key == "wx-aiplay") { if (key == "wx-aiplay") {
refOrder.value.nowPayClick("scanCode"); nextTick(() => {
refOrder.value.nowPayClick("scanCode");
});
return; return;
} }
if (key == "cash") { if (key == "cash") {
refOrder.value.nowPayClick("cash"); nextTick(() => {
refOrder.value.nowPayClick("cash");
});
} }
// oldOrder.value = res; // oldOrder.value = res;
} }