From 64cad6ab0c4df47e1c23bb0e3daa8a7c5bac8471 Mon Sep 17 00:00:00 2001
From: yfx <1249361928@.com>
Date: Mon, 16 Mar 2026 10:02:56 +0800
Subject: [PATCH] 短路
---
pages/quanshou/index.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pages/quanshou/index.vue b/pages/quanshou/index.vue
index fb2a2db..9c9570a 100644
--- a/pages/quanshou/index.vue
+++ b/pages/quanshou/index.vue
@@ -95,14 +95,14 @@
toHuiyuan(){
const _this = this;
uni.request({
- url: _this.$webHost+'/api/v2/memberEquity/getUrlByShop/'+uni.getStorageSync('phone'),
+ url: _this.$webHost+'/api/v2/memberEquity/getUrlByShop/'+_this.$util.getUserInfo().phone,
success: function (res) {
if(res.data.code==200){
uni.request( {
- url: _this.$webHost+'/api/v2/memberEquity/clickUrlByShop/'+uni.getStorageSync('phone'),
+ url: _this.$webHost+'/api/v2/memberEquity/clickUrlByShop/'+_this.$util.getUserInfo().phone,
})
uni.navigateTo( {
- url: '/pages/users/web_page/index?webUel=' + encodeURIComponent(res.data.data.url)
+ url: '/pages/web/index?webUel=' + encodeURIComponent(res.data.data.url)
})
} else {
uni.showToast( {
@@ -118,7 +118,7 @@
getTips(){
const _this = this;
uni.request({
- url: _this.$webHost+'/api/v2/shop/findExpressNo?phone='+uni.getStorageSync('phone'),
+ url: _this.$webHost+'/api/v2/shop/findExpressNo?phone='+_this.$util.getUserInfo().phone,
success: function (res) {
if(res.data.code==200){
_this.tips = res.data.data;
--
Gitblit v1.9.3