app.js 1.6 KB

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