From 1af4b2e328aaf4d92bbbbf5780f6e69a8062cec9 Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Wed, 06 May 2026 15:42:31 +0800
Subject: [PATCH] UI: 齐享购新增跳转第三方链接banner图功能
---
pages/my/my.vue | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/pages/my/my.vue b/pages/my/my.vue
index b34d3ad..f357ffe 100644
--- a/pages/my/my.vue
+++ b/pages/my/my.vue
@@ -150,8 +150,13 @@
if(_this.$util.getUserInfo()?.phone){
await uni.request({
url: _this.$webHost+'/api/v2/auth/qxgIosUnionLogin?phone='+_this.$util.getUserInfo().phone,
+ data:{
+ customerId: uni.getStorageSync('qxgLogin').customerId,
+ appId: uni.getStorageSync('qxgLogin').appId
+ },
success: function (res) {
- _this.isShop = res.data.data.isShop;
+ _this.isShop = res?.data?.data?.isShop;
+ uni.setStorageSync('qxgLogin', res.data.data)
}
})
}
@@ -164,6 +169,10 @@
}
uni.request({
url: _this.$webHost+'/api/v2/customer/ryxIsBuyEquity?phone='+_this.$util.getUserInfo().phone,
+ data:{
+ customerId: uni.getStorageSync('qxgLogin').customerId,
+ appId: uni.getStorageSync('qxgLogin').appId
+ },
success: function (res) {
if(res.data.code==200){
uni.navigateTo( {
--
Gitblit v1.9.3