app.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. //app.js
  2. App({
  3. onLaunch: function() {
  4. if (wx.cloud) {
  5. wx.cloud.init({
  6. traceUser: true
  7. })
  8. }
  9. wx.getSystemInfo({
  10. success: e => {
  11. this.globalData.StatusBar = e.statusBarHeight;
  12. let capsule = wx.getMenuButtonBoundingClientRect();
  13. if (capsule) {
  14. this.globalData.Custom = capsule;
  15. this.globalData.CustomBar = capsule.bottom + capsule.top - e.statusBarHeight;
  16. } else {
  17. this.globalData.CustomBar = e.statusBarHeight + 50;
  18. }
  19. }
  20. })
  21. },
  22. globalData: {
  23. ColorList: [{
  24. title: '嫣红',
  25. name: 'red',
  26. color: '#e54d42'
  27. },
  28. {
  29. title: '桔橙',
  30. name: 'orange',
  31. color: '#f37b1d'
  32. },
  33. {
  34. title: '明黄',
  35. name: 'yellow',
  36. color: '#fbbd08'
  37. },
  38. {
  39. title: '橄榄',
  40. name: 'olive',
  41. color: '#8dc63f'
  42. },
  43. {
  44. title: '森绿',
  45. name: 'green',
  46. color: '#39b54a'
  47. },
  48. {
  49. title: '天青',
  50. name: 'cyan',
  51. color: '#1cbbb4'
  52. },
  53. {
  54. title: '海蓝',
  55. name: 'blue',
  56. color: '#0081ff'
  57. },
  58. {
  59. title: '姹紫',
  60. name: 'purple',
  61. color: '#6739b6'
  62. },
  63. {
  64. title: '木槿',
  65. name: 'mauve',
  66. color: '#9c26b0'
  67. },
  68. {
  69. title: '桃粉',
  70. name: 'pink',
  71. color: '#e03997'
  72. },
  73. {
  74. title: '棕褐',
  75. name: 'brown',
  76. color: '#a5673f'
  77. },
  78. {
  79. title: '玄灰',
  80. name: 'grey',
  81. color: '#8799a3'
  82. },
  83. {
  84. title: '草灰',
  85. name: 'gray',
  86. color: '#aaaaaa'
  87. },
  88. {
  89. title: '墨黑',
  90. name: 'black',
  91. color: '#333333'
  92. },
  93. {
  94. title: '雅白',
  95. name: 'white',
  96. color: '#ffffff'
  97. },
  98. ]
  99. }
  100. })