From ff6c9233877b6a6627253c8c8842d62e6763899c Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Mon, 20 Apr 2026 15:48:39 +0800
Subject: [PATCH] feat: 澜品优选用户默认头像更换;手机号录入位数限制;更改头像功能隐藏
---
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