festival.js
6.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
var i = require("../../../utils/util.js")
var e = getApp(),
a = e.globalData.setting,
os = a,
t = e.request,
d = e.globalData;
Page({
data: {
url: a.url, //接口网址
iurl: a.imghost, //图片前缀网址
itemShow: false, //项目栏目是否显示
cardShow: false, //代金券栏目是否显示
packShow: false, //福利栏目是否显示
textShow: false, //规则是否显示
integralShow: true, //积分领取是否显示
growUpShow: true, //成长值领取是否显示
itemButton: '',
cardButton: '',
getActId: '',
getActType: '',
giftID: '',
receiveState: 0,
textTitle: '',
getUrl: '',
noShow: false,
cards: [], //礼包内容--礼券
itemWare: [], //礼包内容--服务项目
integralTitle: "",
growUpTitle: "",
is_sub: 0, //是否重复领取
bimg: "", //评价有礼背景图片
actFontColor: "", //字体颜色
actBgColor: "", //背景颜色
},
GetList: function() {
var th = this;
wx.showLoading({
title: '加载中',
})
var url = "/api/weshop/marketing/giftbag/bound/get";
getApp().request.promiseGet(url, {
isShowLoading: true,
data: {
"actId": th.data.getActId, //活动id
"actType": 3, //活动类型 1新人礼 2评价有礼 3节日营销 4生日营销
"giftBagId": th.data.giftID, //礼包ID
"storeId": a.stoid, //商家ID
"userId": d.user_id //用户ID
}
}).then(res => {
if (res.data.code == 0) {
if (res.data.data.lbCoupons != null && res.data.data.lbCoupons.length > 0) {
//礼包内容--礼券
th.setData({
cardShow: true,
cards: res.data.data.lbCoupons
})
}
if (res.data.data.lbSM != null && res.data.data.lbSM.length > 0) {
//礼包内容--服务项目
th.setData({
itemShow: true,
itemWare: res.data.data.lbSM
})
}
//礼包积分
if (res.data.data.lbIntegral <= 0) {
if (res.data.data.lbGrowthValue <= 0) {
th.setData({
packShow: false
})
} else {
th.setData({
packShow: false,
integralShow: false,
growUpShow: true
})
}
} else {
if (res.data.data.lbGrowthValue > 0) {
th.setData({
packShow: true
})
} else {
th.setData({
packShow: true,
integralShow: true,
growUpShow: false
})
}
}
th.setData({
integralTitle: '价值' + res.data.data.lbIntegral + '积分',
growUpTitle: '价值' + res.data.data.lbGrowthValue + '成长值'
})
if (res.data.data.receiveState == 0) {
th.setData({
receiveState: 0
})
} else {
th.setData({
receiveState: 1
})
}
if (res.data.data.actIntro != '') {
th.setData({
textShow: true,
textTitle: res.data.data.actIntro.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block"')
})
}
} else {
getApp().my_warnning(res.data.msg, 0, th);
return false;
}
})
},
onLoad: function(options) {
//--先判断会员状态--
var user_info = getApp().globalData.userInfo;
if (user_info == null || user_info.mobile == undefined || user_info.mobile == "" || user_info.mobile == null) {
wx.navigateTo({
url: '/pages/getphone/getphone',
})
return false;
}
var th = this;
th.setData({
getActId: options.actId,
giftID: options.giftBagId
})
th.is_festival();
th.GetList();
wx.setNavigationBarTitle({
title: "节日有礼",
});
},
onShow: function() {
//--先判断会员状态--
var user_info = getApp().globalData.userInfo;
if (user_info == null || user_info.mobile == undefined || user_info.mobile == "" || user_info.mobile == null) {
wx.navigateTo({
url: '/pages/getphone/getphone',
})
return false;
}
},
GetReceive: function() {
var th = this;
if (th.data.receiveState) {
return false;
}
var is_sub = th.data.is_sub; //判断是否重复提交
if (is_sub == 0) {
th.setData({
is_sub: 1
})
var json = {
"actId": th.data.getActId, //活动Id
"actType": 3, //活动类型 1:新人礼、2:评价有礼、3:节日营销、4:生日营销
"giftBagId": th.data.giftID, //礼包Id
"storeId": a.stoid, //商家Id
"userId": d.user_id, //用户ID
"buyFrom": 2
}
var data = JSON.stringify(json);
var url = th.data.url + "/api/weshop/marketing/free/receive/gift/record/insert";
getApp().request.json_post(url, json,
function (res) {
th.setData({
is_sub: 0
})
if (res.data.code == 0) {
th.setData({
receiveState: 1
})
getApp().my_warnning("领取成功", 1, th);
} else {
getApp().my_warnning(res.data.msg, 0, th);
}
},
function (res) {
}
)
}
},
//获取节日有礼信息
is_festival: function(e) {
var th = this;
var url = "/api/weshop/marketing/holiday/act/judge";
getApp().request.promiseGet(url, {
data: {
storeId: a.stoid, //商家ID
userId: d.user_id //用户ID
}
}).then(res => {
if (res.data.code == 0) {
th.setData({
bimg: res.data.data.actImg,
actFontColor: res.data.data.actFontColor, //字体颜色
actBgColor: res.data.data.actBgColor, //背景颜色
})
}
})
},
//界面跳转
goto: function(e) {
var url = e.currentTarget.dataset.url;
getApp().goto(url);
},
//图片失败,默认图片
bind_bnerr1: function(e) {
var th = this;
var _errImg = e.target.dataset.errorimg;
var _Img = e.target.dataset.img;
if (_Img != undefined) {
var _errObj = {};
_errObj[_errImg] = "/miniapp/images/giftbag/gift02.png";
th.setData(_errObj) //注意这里的赋值方式,只是将数据列表中的此项图片路径值替换掉 ;
}
},
});