1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- var app = getApp()
- Page({
-
- onLoad: function () {
- console.log('onLoad')
- },
- data: {
- loged: [
- {
- month: 'current',
- day: '1',
- color: '#77b9b9'
- },
- {
- month: 'current',
- day: '2',
- color: '#77b9b9'
- },
- {
- month: 'current',
- day: '3',
- color: '#f65556'
- },
- {
- month: 'current',
- day: '4',
- color: '#f65556'
- },
- {
- month: 'current',
- day: '5',
- color: '#f65556'
- }, {
- month: 'current',
- day: '6',
- color: '#77b9b9'
- },
- {
- month: 'current',
- day: '7',
- color: '#77b9b9'
- },
- {
- month: 'current',
- day: '8',
- color: '#77b9b9'
- },
- {
- month: 'current',
- day: '9',
- color: '#77b9b9'
- },
- ]
- }
- })
|