From 5f21d92871e0d48309b44549d4e09a8afd2b4980 Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Mon, 30 Mar 2026 15:57:21 +0800
Subject: [PATCH] 会员权益说明底部新增权益商品展示
---
pages/quanshou/index.vue | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/pages/quanshou/index.vue b/pages/quanshou/index.vue
index 9c9570a..f1d2c75 100644
--- a/pages/quanshou/index.vue
+++ b/pages/quanshou/index.vue
@@ -60,6 +60,10 @@
const _this = this;
uni.request({
url: _this.$webHost+'/api/v2/customer/getRyxBenefitsRecordList?phone='+_this.$util.getUserInfo().phone,
+ data:{
+ customerId: uni.getStorageSync('qxgLogin').customerId,
+ appId: uni.getStorageSync('qxgLogin').appId
+ },
success: function (res) {
if(res.data.code==200){
_this.lst = res.data.data;
@@ -96,6 +100,10 @@
const _this = this;
uni.request({
url: _this.$webHost+'/api/v2/memberEquity/getUrlByShop/'+_this.$util.getUserInfo().phone,
+ data:{
+ customerId: uni.getStorageSync('qxgLogin').customerId,
+ appId: uni.getStorageSync('qxgLogin').appId
+ },
success: function (res) {
if(res.data.code==200){
uni.request( {
@@ -119,6 +127,10 @@
const _this = this;
uni.request({
url: _this.$webHost+'/api/v2/shop/findExpressNo?phone='+_this.$util.getUserInfo().phone,
+ data:{
+ customerId: uni.getStorageSync('qxgLogin').customerId,
+ appId: uni.getStorageSync('qxgLogin').appId
+ },
success: function (res) {
if(res.data.code==200){
_this.tips = res.data.data;
--
Gitblit v1.9.3