Commit 55bdaf46b6ca41a2c84103cc25c9372f6f246a54
Merge branch 'dev' of http://git.vipzhuang.cn/wxd/MShopWeApp into dev
Showing
1 changed file
with
19 additions
and
7 deletions
packageB/pages/luckactivity/luckinfo/luckinfo.js
| ... | ... | @@ -564,13 +564,6 @@ Page({ |
| 564 | 564 | |
| 565 | 565 | |
| 566 | 566 | } else { |
| 567 | - // console.log('请求出错'); | |
| 568 | - if(self.data.luckInfo.vip_act_num != 0) { | |
| 569 | - self.setData({ | |
| 570 | - 'luckInfo.user_LuckNumDay': self.data.luckInfo.user_LuckNumDay - 1, | |
| 571 | - }); | |
| 572 | - }; | |
| 573 | - | |
| 574 | 567 | let thxIndexArr = self.data.thxIndexArr; |
| 575 | 568 | const random = Math.random() * thxIndexArr.length >> 0; |
| 576 | 569 | const index = thxIndexArr[random]; |
| ... | ... | @@ -580,6 +573,25 @@ Page({ |
| 580 | 573 | $lucky.stop(index); |
| 581 | 574 | self.data.start = false; |
| 582 | 575 | }, 3000); |
| 576 | + | |
| 577 | + | |
| 578 | + if(res.data.code == -1) { | |
| 579 | + wx.showToast({ | |
| 580 | + title: res.data.msg, | |
| 581 | + icon: 'none', | |
| 582 | + }); | |
| 583 | + self.data.luckInfo.msgInfo = res.data.msg; | |
| 584 | + return; | |
| 585 | + // self.data.start = true; | |
| 586 | + }; | |
| 587 | + // console.log('请求出错'); | |
| 588 | + if(self.data.luckInfo.vip_act_num != 0) { | |
| 589 | + self.setData({ | |
| 590 | + 'luckInfo.user_LuckNumDay': self.data.luckInfo.user_LuckNumDay - 1, | |
| 591 | + }); | |
| 592 | + }; | |
| 593 | + | |
| 594 | + | |
| 583 | 595 | }; |
| 584 | 596 | }, |
| 585 | 597 | ... | ... |