// pages/report/report.js import itt from '../../utils/util' const app = getApp() Page({ /** * 页面的初始数据 */ data: { reportList: [], showPage: true }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { console.log('load'); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady() { console.log('ready'); }, /** * 生命周期函数--监听页面显示 */ onShow() { var isLogin = itt.loginAuth() console.log(isLogin, 'isLoginisLogin'); this.setData({ showPage: isLogin }) }, /** * 立即预约 */ handleAppoint() { wx.navigateTo({ url: '/pages/appointment/appointment', }) }, /** * 生命周期函数--监听页面卸载 */ onUnload() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh() { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom() { }, /** * 点击报告进入详情 */ handleDetail() { wx.navigateTo({ url: '/pages/reportDetail/reportDetail', }) } })