e6632755 by simon

no message

1 parent 17e83707
......@@ -88,8 +88,8 @@ Page({
if (!_this.data.canShake || _this.data.tipsCommonVisible) {
return
}
if (res.x > 1) { //偏移量为2时触发,有的使用1
let shakeValue = 2;
if (res.x > shakeValue || res.y > shakeValue || res.z > shakeValue) { //偏移量为2时触发,有的使用1
// 触发摇一摇
_this.queryWishbillAssist();
}
......@@ -187,10 +187,10 @@ Page({
}, 2000);
} else if (status == 2) {
// 助力失败
// 助力失败 已经为别人助力过
this.setData({
tipsCommonVisible: true,
tipsInnerText: `亲爱的女神,您已为${wishInfo.member.nickname}好友助力过,每人只能为一位好友助力噢!`
tipsInnerText: `亲爱的女神,您已为${result.assistNickname}好友助力过,每人只能为一位好友助力噢!`
})
} else if (status == 3) {
this.setData({
......@@ -202,6 +202,11 @@ Page({
this.setData({
groupMemberCoopVisible: true
})
} else if (status == 5) {
this.setData({
tipsCommonVisible: true,
tipsInnerText: "亲爱的女神,TA的心愿已达成,您可为其它好友心愿充值~"
})
} else {
// 助力失败
this.setData({
......
......@@ -83,7 +83,8 @@ Page({
if (!_this.data.tipsShakeVisible) {
return
}
if (res.x > 1) { //偏移量为2时触发,有的使用1
let shakeValue = 2;
if (res.x > shakeValue || res.y > shakeValue || res.z > shakeValue) { //偏移量为2时触发,有的使用1
_this.setData({
tipsShakeVisible: false,
tipsCreateCompleteVisible: true
......