index.js
9.5 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
//index.js
//获取应用实例
const app = getApp();
import mock from './mock.js'//拿到的数据
Page({
data: {
items: [],
slide: [{image: 'http://pk86rwhci.bkt.clouddn.com/banner.png'}, {image: 'http://pk86rwhci.bkt.clouddn.com/banner.png'}],
cate: [{pic: '../../images/duantu@2x.png', name: '短途郊游'},
{pic: '../../images/changtu@2x.png', name: '长途旅游'},
{pic: '../../images/finecanting@2x.png', name: 'Fine Dining 餐厅'},
{pic: '../../images/huwai@2x.png', name: '户外运动'},
{pic: '../../images/juhui@2x.png', name: '聚会'},
{pic: '../../images/yinyuejie@2x.png', name: '音乐节'},
{pic: '../../images/dianying@2x.png', name: '电影'},
{pic: '../../images/qingshe@2x.png', name: '轻奢餐厅'},
{pic: '../../images/zhanlan@2x.png', name: '展览'},
{pic: '../../images/wutaiju@2x.png', name: '舞台剧'},
],
meal_banner: [
{pic: 'http://pk86rwhci.bkt.clouddn.com/banner.png',address:'Opera Bombana',time:'2018.4.28'},
{pic: 'http://pk86rwhci.bkt.clouddn.com/b1@2x%20%281%29.png',address:'Opera Bombana',time:'2018.4.28'},
{pic: 'http://pk86rwhci.bkt.clouddn.com/b1@2x%20%281%29.png',address:'Opera Bombana',time:'2018.4.28'},
{pic: 'http://pk86rwhci.bkt.clouddn.com/banner.png',address:'Opera Bombana',time:'2018.4.28'}],
currentBannerIndex: 0,
tabcurrent: {tab: 0, bubble: ''},
noticeList: [],
is_showAnswer: false,
is_showUserInfo: false,
is_answer: true,
current_swiper:0,
page_number:1,
motto: 'Hello World',
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('button.open-type.getUserInfo')
},
swiperChange(e) {
// console.log(e);
this.setData({current_swiper: e.detail.current})
},
//发布拼活动
releaseActivity() {
wx.navigateTo({
url: '/pages/activity/activity',
})
},
//发布拼餐
releaseMeal() {
wx.navigateTo({
url: '/pages/meal/meal',
})
},
//完善个人信息
goUserInfo() {
wx.navigateTo({
url: '/pages/my/edit-info/edit-info',
})
},
//去答题
goAnswer() {
wx.navigateTo({
url: '/pages/index/answer-question/answer-question',
})
},
disableScroll() {
},
handleBackground() {
console.log('dianji');
this.setData({is_showAnswer: false, is_showUserInfo: false,})
},
//进入分类详情
goTypeDetail() {
wx.navigateTo({
url: '/pages/index/type-detail/type-detail',
})
},
//进入号外公告详情
goNotice(e) {
const id = e.currentTarget.dataset.id;
wx.navigateTo({
url: '/pages/index/notice-detail/notice-detail?id=' + id,
})
},
//查看更多
goMore() {
wx.navigateTo({
url: '/pages/index/tandian-list/tandian-list',
})
},
//进入拼餐详情
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'
})
},
onLoad: function () {
this._doRefreshMasonry(this.data.items)
},
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;
if (tabcurrent == tindex) {
return false
} else {
this.setData({
tabcurrent: tindex
})
wx.redirectTo({
url: '/pages/index/index',
})
}
},
//拼单-导航
consult(e) {
var tindex = e.currentTarget.dataset.tindex
var tabcurrent = this.data.tabcurrent
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('发布');
const self = this;
if (!self.data.is_answer) {
self.setData({
is_showAnswer: true
});
} else {
self.setData({
is_showUserInfo: true
});
}
},
//订单-导航
wish(e) {
var tindex = e.currentTarget.dataset.tindex
var tabcurrent = this.data.tabcurrent
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
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)//获取首页
});
// };
}
})
},
//获取首页内容
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,
};
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,
noticeList:res.data.extra,
meal_banner:res.data.meal,
items:res.data.active,
});
self._doRefreshMasonry(res.data.active);
// console.log(this.data.this_week_test_info);
}
})
},
onShow() {
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');
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})
}
},
});