index.js
14.6 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
//index.js
//获取应用实例
const app = getApp();
import mock from './mock.js'//拿到的数据
Page({
data: {
items: [],
slide: [],
cate: [],
meal_banner: [],
currentBannerIndex: 0,
tabcurrent: {tab: 0, bubble: ''},
noticeList: [],
is_showAnswer: false,
is_showUserInfo: false,
is_showRelease: false,
is_write: 2,//1:已填写,2:未填写
is_answer: false,
current_swiper: 0,
page_number: 1,
cityList: [],
addr:'', //切换地址
motto: 'Hello World',
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('button.open-type.getUserInfo')
},
//关闭金火柴勋章弹框
close() {
this.setData({show_gold_modal:false,show_normal_modal:false});
try {
wx.removeStorageSync('score');
console.log('删除后score',wx.getStorageSync('score'));
} catch (e) {
// Do something when catch error
}
},
//获取城市列表
getCityList() {
const self = this;
let url = '/portal/Index/cityList';
app.post(url, {}, {}).then((res) => {
console.log('获取城市列表', res);
if (+res.code === 1) {
const arr = [];
res.data.list.forEach((item) => {
arr.push(item.title)
});
self.setData({
city_picker_list: arr,
cityList:res.data.list,
});
}
})
},
//切换城市
cityPickerChange(e) {
this.setData({
current_city: e.detail.value,
is_city_change: true
});
const lat = this.data.cityList[e.detail.value].latng.split(',')[1];
const lng = this.data.cityList[e.detail.value].latng.split(',')[0];
this.setData({lat: lat, lng: lng,addr:this.data.cityList[e.detail.value].title});
// console.log('lat', 'lng',lat,lng);
this.getIndex();
},
swiperChange(e) {
this.setData({current_swiper: e.detail.current})
},
//发布拼活动
releaseActivity() {
this.setData({is_showRelease: false,});
wx.navigateTo({
url: '/pages/activity/activity',
});
},
//发布拼餐
releaseMeal() {
this.setData({is_showRelease: false,});
wx.navigateTo({
url: '/pages/meal/meal',
})
},
//完善个人信息
goUserInfo() {
this.setData({is_showUserInfo: false});
wx.navigateTo({
url: '/pages/my/edit-info/edit-info',
})
},
//去答题
goAnswer() {
this.setData({is_showAnswer: false});
wx.navigateTo({
url: '/pages/index/answer-question/answer-question',
})
},
disableScroll() {
},
handleBackground() {
console.log('dianji');
this.setData({is_showAnswer: false, is_showUserInfo: false, is_showRelease: false,})
},
//进入分类详情
goTypeDetail(e) {
const id = +e.currentTarget.dataset.id;
const name = e.currentTarget.dataset.name;
wx.navigateTo({
url: '/pages/index/type-detail/type-detail?id=' + id + '&name=' + name,
})
},
//进入号外公告详情
goNotice(e) {
const id = e.currentTarget.dataset.id;
wx.navigateTo({
url: '/pages/index/notice-detail/notice-detail?id=' + id,
})
},
//查看更多
goMore() {
let city = null;
if(this.data.is_city_change) {
city = JSON.stringify({
name:this.data.cityList[this.data.current_city].title,
lat: this.data.lat,
lng: this.data.lng,
})
}
wx.navigateTo({
url: '/pages/index/tandian-list/tandian-list?city=' + city,
})
},
//进入拼餐详情
goMealDetail(e) {
console.log('拼餐详情e', e);
const id = e.currentTarget.dataset.id;
wx.navigateTo({
url: '/pages/meal/detail/detail?id=' + id,
})
},
//进入拼活动详情
goActivityDetail(e) {
console.log('活动详情e', e);
const id = e.detail.activity_id;
wx.navigateTo({
url: '/pages/activity/detail/detail?id=' + id,
})
},
//搜索
search() {
wx.navigateTo({
url: '/pages/search/search',
})
},
bannerChange(e) {
// console.log(e,'current', current);
const current = e.detail.current;
this.setData({currentBannerIndex: current})
},
//事件处理函数
bindViewTap: function () {
wx.navigateTo({
url: '../logs/logs'
})
},
onReachBottom: function () {
// this._doAppendMasonry(this.data.items)
},
_doRefreshMasonry(items) {
this.masonryListComponent = this.selectComponent('#masonry');
this.masonryListComponent.start(items).then(() => {
console.log('refresh completed')
})
},
_doAppendMasonry(items) {
this.masonryListComponent = this.selectComponent('#masonry');
// 获取接口数据后使用瀑布流组件append方法,当append完成后调用then,是否可触底价在的标志位可以在这里处理
this.masonryListComponent.append(items).then(() => {
console.log('refresh completed,加载更多')
})
},
//首页-导航
service(e) {
var tindex = e.currentTarget.dataset.tindex;
var tabcurrent = this.data.tabcurrent.tab;
if (tabcurrent == tindex) {
console.log('点击本页');
return false
} else {
console.log('其他页');
this.setData({
tabcurrent: tindex
})
wx.redirectTo({
url: '/pages/index/index',
})
}
},
//拼单-导航
consult(e) {
var tindex = e.currentTarget.dataset.tindex
var tabcurrent = this.data.tabcurrent.tab
if (tabcurrent == tindex) {
return false
} else {
this.setData({
tabcurrent: tindex
})
// wx.showToast({
// title: '该功能正在开发中',
// icon: 'none'
// })
wx.redirectTo({
url: '/pages/spell-list/spell-list',
})
}
},
//发布按钮
release(e) {
console.log('发布',app.globalData.isLogin);
const self = this;
if(!app.globalData.isLogin) {
wx.showToast({title: '还没登录,先去登录吧~', icon: 'none',
success:function () {
setTimeout(function () {
wx.redirectTo({url:'/pages/my/my'})
},500)
}
});
}else {
if (+self.data.is_write === 2 && wx.getStorageSync('is_canSend') === 2) { //没填写个人信息并且不可以发布 =>去填写
self.setData({
is_showUserInfo: true //弹出 去填写个人信息弹框
});
} else if (+self.data.is_write === 1 && wx.getStorageSync('is_canSend') === 2 && wx.getStorageSync('is_answer') === 2) { //已填写且不能发布=>去答题
self.setData({
is_showAnswer: true, //弹出 去答题弹框
is_showRelease:false,
});
} else if (+self.data.is_write === 1 && wx.getStorageSync('is_canSend') === 1 && wx.getStorageSync('is_answer') === 1) { //已填写且可以发布 =>去发布
self.setData({
is_showRelease: true //弹出 发布弹框
});
} else if (+self.data.is_write === 1 && wx.getStorageSync('is_canSend') === 2 && wx.getStorageSync('is_answer') === 1) {
wx.showToast({title: '等级不够,无法使用发布功能', icon: 'none'})
}
}
},
//订单-导航
wish(e) {
var tindex = e.currentTarget.dataset.tindex
var tabcurrent = this.data.tabcurrent.tab
if (tabcurrent == tindex) {
return false
} else {
this.setData({
tabcurrent: tindex
})
// wx.showToast({
// title: '该功能正在开发中',
// icon: 'none'
// })
wx.redirectTo({
url: '/pages/order/order',
})
}
},
//我的-导航
my(e) {
var tindex = e.currentTarget.dataset.tindex
var tabcurrent = this.data.tabcurrent.tab
if (tabcurrent == tindex) {
return false
} else {
this.setData({
tabcurrent: tindex
})
wx.redirectTo({
url: '/pages/my/my',
})
}
},
//获取经纬度
getLat() {
const self = this;
wx.getLocation({ //获取当前经纬度
type: 'wgs84', //返回可以用于wx.openLocation的经纬度,官方提示bug: iOS 6.3.30 type 参数不生效,只会返回 wgs84 类型的坐标信息
success: function (res) {
console.log('获取当前经纬度', res);
self.setData({lat: res.latitude, lng: res.longitude});
// app.loginCallback();
// app.loginCallback = res => {
// console.log('show-callback-res', res);
app.getLogin().then(function (res) {
console.log('res', res);
self.getIndex(res.token);//获取首页
self.getIsWrite(); //判断是否已填写个人信息
});
// };
}
});
// wx.setStorageSync('score',30);
console.log('score',wx.getStorageSync('score'));
if(wx.getStorageSync('score') !== '' && wx.getStorageSync('score')>=80) {
self.setData({show_gold_modal:true,});
}else if(wx.getStorageSync('score') !== '' && wx.getStorageSync('score')<80) {
self.setData({show_normal_modal:true})
}
},
//获取首页内容
getIndex(res) {
console.log('token', res, wx.getStorageSync('token'));
const self = this;
let url = '/portal/Index/index';
let params = {
lat: self.data.lat,
lng: self.data.lng,
token: wx.getStorageSync('token'),
page: self.data.page_number,
addr: self.data.addr,
};
let header = {
"token": wx.getStorageSync('token')
};
app.post(url, params, {}).then((res) => {
console.log('获取首页', res);
if (+res.code === 1) {
self.setData({
slide: res.data.banner,
cate: res.data.cate,
china_city: res.data.city.city,
noticeList: res.data.extra,
meal_banner: res.data.meal,
items: res.data.active,
is_canSend: res.data.is_canSend,
});
wx.setStorageSync('is_canSend', res.data.is_canSend);//1:可以发布2:不可以发布
wx.setStorageSync('is_answer', res.data.is_answer);//1:已答题2:未答题
// is_answer
self._doRefreshMasonry(res.data.active);
// console.log(this.data.this_week_test_info);
}
})
},
//是否填写个人信息
getIsWrite() {
const self = this;
let url = '/portal/Send/isWrite';
let params = {
token: wx.getStorageSync('token'),
};
let header = {
"token": wx.getStorageSync('token')
};
app.post(url, params, {}).then((res) => {
console.log('是否填写个人信息', res);
if (+res.code === 1) {
self.setData({
is_write: res.data.is_write,//1:已填写2:未填写
});
wx.setStorageSync('is_write', res.data.is_write);//1:已填写2:未填写
// console.log(this.data.this_week_test_info);
}
})
},
onLoad: function () {
this.getCityList();
this._doRefreshMasonry(this.data.items)
},
onShow() {
if(wx.getStorageSync('isLogin') === true) {
this.getLat();//获取经纬度
}
// wx.chooseLocation({
// success(res) {
// console.log(res);
// self.setData({address_position: res.address,lat:res.latitude,lng:res.longitude})
// },
// })
// wx.openLocation({//使用微信内置地图查看位置。
// latitude: 39.02934,//要去的纬度-地址
// longitude: 117.0212,//要去的经度-地址
// name: "",
// address: ""
// })
console.log('index-show-isLogin',wx.getStorageSync('isLogin'));
// console.log(app.globalData.userInfo);
},
onPageScroll(e) {
// console.log('页面滚动', e);
if (e.scrollTop > 140) {
this.setData({hidden_top: true})
} else if (e.scrollTop <= 140) {
this.setData({hidden_top: false})
}
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
let self = this;
self.setData({show_gold_modal:false});
// 设置菜单中的转发按钮触发转发事件时的转发内容
var shareObj = {
title: '火柴西路', // 默认是小程序的名称(可以写slogan等)
path: '', // 默认是当前页面,必须是以‘/’开头的完整路径
imageUrl: '', //自定义图片路径,可以是本地文件路径、代码包文件路径或者网络图片路径,支持PNG及JPG,不传入 imageUrl 则使用默认截图。显示图片长宽比是 5:4
success: function (res) {
if (res.errMsg == 'shareAppMessage:ok') {
}
},
fail: function () {
// 转发失败之后的回调
if (res.errMsg == 'shareAppMessage:fail cancel') {
// 用户取消转发
} else if (res.errMsg == 'shareAppMessage:fail') {
// 转发失败,其中 detail message 为详细失败信息
}
},
complete: function () {
// 转发结束之后的回调(转发成不成功都会执行)
}
}
},
});