From d466c9e9a82e32f5156665455eff898563227360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Tue, 14 Apr 2026 01:48:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(shop):=20=E4=BF=AE=E5=A4=8D=E5=BA=97?= =?UTF-8?q?=E9=93=BA=E4=BA=8C=E7=BB=B4=E7=A0=81=E6=8E=A5=E5=8F=A3=E5=9C=B0?= =?UTF-8?q?=E5=9D=80=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将二维码接口地址从 mp-api.websoft.top 修改为 cms-api.websoft.top - 修正扫码登录获取订单二维码的接口路径 - 确保用户ID参数正确拼接到请求URL中 --- src/views/shop/shopDealerUser/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/shop/shopDealerUser/index.vue b/src/views/shop/shopDealerUser/index.vue index b4afa0b..3c7d6df 100644 --- a/src/views/shop/shopDealerUser/index.vue +++ b/src/views/shop/shopDealerUser/index.vue @@ -133,7 +133,7 @@ const loading = ref(true); const getQrCodeUrl = (userId?: number) => { - return `https://mp-api.websoft.top/api/wx-login/getOrderQRCodeUnlimited/uid_${ + return `https://cms-api.websoft.top/api/wx-login/getOrderQRCodeUnlimited/uid_${ userId ?? '' }`; };