123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- Page({
-
- data: {
- hasAddress: true,
- calendarcolor: '#45A6B5',
- timeActive: '0',
- vanoverlayshow: false
- },
-
- onLoad(options) {
- },
-
- onReady() {
- },
-
- onShow() {
-
- },
- handleTime (e) {
- console.log(e);
- var timeActiveIndex = e.currentTarget.dataset.time
- this.setData({
- timeActive: timeActiveIndex
- })
- },
-
- handleActiveCard () {},
-
- handleCharge () {}
- })
|