From 6ba5c1b5369ee502cbc75dc83343afd22e9fb3c8 Mon Sep 17 00:00:00 2001 From: YeMingfei666 <1619116647@qq.com> Date: Wed, 12 Mar 2025 15:22:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BB=A3=E5=AE=A2=E4=B8=8B=E5=8D=95?= =?UTF-8?q?=E8=B4=AD=E7=89=A9=E8=BD=A6=E6=A0=8F=E7=9B=AE=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E5=AE=9D=EF=BC=8C=E7=8E=B0=E9=87=91=E5=BF=AB?= =?UTF-8?q?=E6=8D=B7=E6=94=AF=E4=BB=98=E5=8A=9F=E8=83=BD=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tool/Instead/index.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/tool/Instead/index.vue b/src/views/tool/Instead/index.vue index 18b7026..bac81a8 100644 --- a/src/views/tool/Instead/index.vue +++ b/src/views/tool/Instead/index.vue @@ -385,11 +385,15 @@ async function createOrder(key) { showOrder.value = true; if (key == "wx-aiplay") { - refOrder.value.nowPayClick("scanCode"); + nextTick(() => { + refOrder.value.nowPayClick("scanCode"); + }); return; } if (key == "cash") { - refOrder.value.nowPayClick("cash"); + nextTick(() => { + refOrder.value.nowPayClick("cash"); + }); } // oldOrder.value = res; }