本文实例为大家分享了微信小程序城市选择器,供大家参考,具体内容如下
代码很简单.
},onReady: function () {
// 生命周期函数--监听页面初次渲染完成
},onShow: function () {
// 生命周期函数--监听页面显示
},onHide: function () {
// 生命周期函数--监听页面隐藏
},onUnload: function () {
// 生命周期函数--监听页面卸载
},onPullDownRefresh: function () {
// 页面相关事件处理函数--监听用户下拉动作
},onReachBottom: function () {
// 页面上拉触底事件的处理函数
},clickLetter: function (e) {
console.log(e.currentTarget.dataset.letter)
var showLetter = e.currentTarget.dataset.letter;
this.setData({
showLetter: showLetter,isShowLetter: true,scrollTopId: showLetter,})
var that = this;
setTimeout(function () {
that.setData({
isShowLetter: false
})
},1000)
},//选择城市
bindCity: function (e) {
console.log("bindCity")
this.setData({ city: e.currentTarget.dataset.city })
},//选择热门城市
bindHotCity: function (e) {
console.log("bindHotCity")
this.setData({
city: e.currentTarget.dataset.city
})
},//点击热门城市回到顶部
hotCity: function () {
this.setData({
scrollTop: 0,})
}
})