From c54ab779e9c363167165e86c6f971397834336d4 Mon Sep 17 00:00:00 2001 From: syt <854400391@qq.com> Date: Tue, 23 Apr 2024 20:19:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E4=B8=AD+=E6=8F=90=E7=8E=B0b?= =?UTF-8?q?ug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.js | 2 +- pages/goods/detail.vue | 2 +- pages/invite/index.vue | 2 +- pages/news/user/withdrawal.vue | 4 ++-- utils/request/index.js | 10 +++++----- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config.js b/config.js index bccab85..cef42d9 100644 --- a/config.js +++ b/config.js @@ -15,7 +15,7 @@ export default { * 可在超管后台-商城列表中查看10025 */ - storeId: wx.getExtConfigSync? wx.getExtConfigSync().store_id : 10045, + storeId: wx.getExtConfigSync().store_id? wx.getExtConfigSync().store_id : 10045, // storeId: 10037, diff --git a/pages/goods/detail.vue b/pages/goods/detail.vue index 3ec7539..b42b20c 100644 --- a/pages/goods/detail.vue +++ b/pages/goods/detail.vue @@ -158,7 +158,7 @@ 运费 - 包邮(已提交订单时为准) + 包邮(以提交订单时为准) diff --git a/pages/invite/index.vue b/pages/invite/index.vue index 37a9b52..48a6476 100644 --- a/pages/invite/index.vue +++ b/pages/invite/index.vue @@ -318,7 +318,7 @@ }) } else if (index == 2) { uni.navigateTo({ - url: "/pages/news/user/withdrawal?balance=" + this.userInfo.balance + url: "/pages/news/user/withdrawal?balance=" + this.userInfo.withdrawal_money }) } else if (index == 3) { this.InviteUserPoster(); diff --git a/pages/news/user/withdrawal.vue b/pages/news/user/withdrawal.vue index fd960aa..efde0fa 100644 --- a/pages/news/user/withdrawal.vue +++ b/pages/news/user/withdrawal.vue @@ -313,8 +313,8 @@ }, bindPickerChange1(e) { this.index1 = e.detail.value; - this.obj.duty_no = invoicList[index1].duty_no; - this.obj.header = invoicList[index1].header + this.obj.duty_no = this.invoicList[e.detail.value].duty_no; + this.obj.header = this.invoicList[e.detail.value].header } } } diff --git a/utils/request/index.js b/utils/request/index.js index 955be17..3c984aa 100644 --- a/utils/request/index.js +++ b/utils/request/index.js @@ -40,10 +40,10 @@ $http.requestStart = options => { if (options.load) { if (requestNum <= 0) { // 打开加载动画 - uni.showLoading({ - title: '加载中', - mask: true - }) + // uni.showLoading({ + // title: '加载中', + // mask: true + // }) } requestNum += 1 } @@ -79,7 +79,7 @@ $http.requestEnd = options => { if (options.load) { requestNum = requestNum - 1 if (requestNum <= 0) { - uni.hideLoading() + // uni.hideLoading() } } }