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() } } }