fix(shop): 修复店铺二维码接口地址错误

- 将二维码接口地址从 mp-api.websoft.top 修改为 cms-api.websoft.top
- 修正扫码登录获取订单二维码的接口路径
- 确保用户ID参数正确拼接到请求URL中
This commit is contained in:
2026-04-14 01:48:53 +08:00
parent d079a28ffc
commit d466c9e9a8

View File

@@ -133,7 +133,7 @@
const loading = ref(true); const loading = ref(true);
const getQrCodeUrl = (userId?: number) => { 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 ?? '' userId ?? ''
}`; }`;
}; };