// pages/appointment/appointment.js Page({ /** * 页面的初始数据 */ data: { hasAddress: false, calendarcolor: '#45A6B5', timeActive: '9', dialogsShow: true }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { }, /** * 选择地址 */ handleChoseAddress() { wx.navigateTo({ url: '/pages/address/address?form=appointment&back=1', }) }, /** * 生命周期函数--监听页面显示 */ onShow() { }, handleTime (e) { console.log(e); var timeActiveIndex = e.currentTarget.dataset.time this.setData({ timeActive: timeActiveIndex }) }, // 激活卡片 handleActiveCard () { wx.navigateTo({ url: '/pages/scan/scan?form=appointment', }) }, // 去充值 handleCharge () {} })