my-log.js 889 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. var app = getApp()
  2. Page({
  3. onLoad: function () {
  4. console.log('onLoad')
  5. },
  6. data: {
  7. loged: [
  8. {
  9. month: 'current',
  10. day: '1',
  11. color: '#77b9b9'
  12. },
  13. {
  14. month: 'current',
  15. day: '2',
  16. color: '#77b9b9'
  17. },
  18. {
  19. month: 'current',
  20. day: '3',
  21. color: '#f65556'
  22. },
  23. {
  24. month: 'current',
  25. day: '4',
  26. color: '#f65556'
  27. },
  28. {
  29. month: 'current',
  30. day: '5',
  31. color: '#f65556'
  32. }, {
  33. month: 'current',
  34. day: '6',
  35. color: '#77b9b9'
  36. },
  37. {
  38. month: 'current',
  39. day: '7',
  40. color: '#77b9b9'
  41. },
  42. {
  43. month: 'current',
  44. day: '8',
  45. color: '#77b9b9'
  46. },
  47. {
  48. month: 'current',
  49. day: '9',
  50. color: '#77b9b9'
  51. },
  52. ]
  53. }
  54. })