加载中+提现bug

main
syt 10 months ago
parent d114542654
commit c54ab779e9
  1. 2
      config.js
  2. 2
      pages/goods/detail.vue
  3. 2
      pages/invite/index.vue
  4. 4
      pages/news/user/withdrawal.vue
  5. 10
      utils/request/index.js

@ -15,7 +15,7 @@ export default {
* 可在超管后台-商城列表中查看10025 * 可在超管后台-商城列表中查看10025
*/ */
storeId: wx.getExtConfigSync? wx.getExtConfigSync().store_id : 10045, storeId: wx.getExtConfigSync().store_id? wx.getExtConfigSync().store_id : 10045,
// storeId: 10037, // storeId: 10037,

@ -158,7 +158,7 @@
</view> </view>
<view class="chosed"> <view class="chosed">
<view class="title">运费</view> <view class="title">运费</view>
<view class="info">包邮提交订单时为准 <view class="info">包邮提交订单时为准
</view> </view>
</view> </view>
<view class="chosed" v-if="serveList.length>0"> <view class="chosed" v-if="serveList.length>0">

@ -318,7 +318,7 @@
}) })
} else if (index == 2) { } else if (index == 2) {
uni.navigateTo({ 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) { } else if (index == 3) {
this.InviteUserPoster(); this.InviteUserPoster();

@ -313,8 +313,8 @@
}, },
bindPickerChange1(e) { bindPickerChange1(e) {
this.index1 = e.detail.value; this.index1 = e.detail.value;
this.obj.duty_no = invoicList[index1].duty_no; this.obj.duty_no = this.invoicList[e.detail.value].duty_no;
this.obj.header = invoicList[index1].header this.obj.header = this.invoicList[e.detail.value].header
} }
} }
} }

@ -40,10 +40,10 @@ $http.requestStart = options => {
if (options.load) { if (options.load) {
if (requestNum <= 0) { if (requestNum <= 0) {
// 打开加载动画 // 打开加载动画
uni.showLoading({ // uni.showLoading({
title: '加载中', // title: '加载中',
mask: true // mask: true
}) // })
} }
requestNum += 1 requestNum += 1
} }
@ -79,7 +79,7 @@ $http.requestEnd = options => {
if (options.load) { if (options.load) {
requestNum = requestNum - 1 requestNum = requestNum - 1
if (requestNum <= 0) { if (requestNum <= 0) {
uni.hideLoading() // uni.hideLoading()
} }
} }
} }

Loading…
Cancel
Save