fix(shop): 修复店铺二维码接口地址错误
- 将二维码接口地址从 mp-api.websoft.top 修改为 cms-api.websoft.top - 修正扫码登录获取订单二维码的接口路径 - 确保用户ID参数正确拼接到请求URL中
This commit is contained in:
@@ -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 ?? ''
|
||||
}`;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user