From ca1b3e6e1e626d1ff54258b9f4e785057bbe5ab6 Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Wed, 15 Jul 2026 15:30:37 +0800
Subject: [PATCH] UI:齐享购IOS,1.首页搜索调整;2.行权接口参数调整

---
 pages/quanshou/index.vue |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/pages/quanshou/index.vue b/pages/quanshou/index.vue
index 9c9570a..6977bce 100644
--- a/pages/quanshou/index.vue
+++ b/pages/quanshou/index.vue
@@ -60,6 +60,11 @@
     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,
+        appId: _this.$APPID
+      },
       success: function (res) {
         if(res.data.code==200){
           _this.lst = res.data.data;
@@ -96,6 +101,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 +128,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