123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // 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 () {}
- })
|