qujingdi.js 2.5 KB
// pages/qujingdi/qujingdi.js
const app=getApp()
Page({

	/**
	 * 页面的初始数据
	 */
	data: {
		qujinglist:[],
		topimage:'',
		showpull:false,
		page:1
	},

	/**
	 * 生命周期函数--监听页面加载
	 */
	onLoad: function (options) {
		this.gethengtu();
		this.getqujinglist()
	},

	// 跳到取景详情
	qujingdetail(e){
		let id=e.currentTarget.dataset.id;
		wx.navigateTo({
			url: '/pages/qujingdidetail/qujingdidetail?locat_id='+id,
		})
	},

	  // 底部导航跳转
		footersel(e){
			console.log(34343489)
			let id=e.currentTarget.dataset.id;
			console.log(id)
			if(id==1){
				wx.redirectTo({
					url: '/pages/homepage/homepage',
				})
			}else if(id==2){
				wx.redirectTo({
					url: '/pages/kind/kind',
				})
			}else if(id==3){
				wx.redirectTo({
					url: '/pages/cart/cart',
				})
			}else if(id==4){
				wx.redirectTo({
					url: '/pages/mine/mine',
				})
			}
		},
	// 获取首部横图
	gethengtu(){
		let that = this;
    let url = 'index/topimage';
    let param = {}
    app.post(url, 'post').then((res) => {
			console.log(res);
			that.setData({
				topimage:res.image
			})
		
    }).catch((err) => {
    })
	},
	// 获取取景地列表
	getqujinglist(){
		let that = this;
    let url = 'locat/locat_list';
    let param = {
			is_top:1,
			page:that.data.page,
			pageNum:10
		}
    app.post(url, param,'post').then((res) => {
			console.log(res);
			that.setData({
				qujinglist:that.data.qujinglist.concat(res.info)
			})
			if(that.data.page>1){
				if(res.info.length==0){
					that.setData({
						showpull:true
					})
					wx.showToast({
						title: '没有更多了~',
						icon:'none'
					})

				}
			}
    }).catch((err) => {
    })
	},
	gosearch(){
		wx.navigateTo({
			url: '/pages/qujingkind/qujingkind',
		})
	},
	/**
	 * 生命周期函数--监听页面初次渲染完成
	 */
	onReady: function () {

	},

	/**
	 * 生命周期函数--监听页面显示
	 */
	onShow: function () {

	},

	/**
	 * 生命周期函数--监听页面隐藏
	 */
	onHide: function () {

	},

	/**
	 * 生命周期函数--监听页面卸载
	 */
	onUnload: function () {

	},

	/**
	 * 页面相关事件处理函数--监听用户下拉动作
	 */
	onPullDownRefresh: function () {

	},

	/**
	 * 页面上拉触底事件的处理函数
	 */
	onReachBottom: function () {
		let newpage=this.data.page;
		newpage++;
		this.setData({
			page:newpage
		})
		if(this.data.showpull==false){
			this.getqujinglist()
		}
	},

	/**
	 * 用户点击右上角分享
	 */
	onShareAppMessage: function () {

	}
})