navigation1.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /**
  2. * 页面展示列表数据
  3. */
  4. export default {
  5. data: [{
  6. title: '首次更新',
  7. list: [{
  8. icon: 'code',
  9. title: '销售统计',
  10. color: 'purplered',
  11. url: '/newsPages/pages1',
  12. author: '图鸟真菜'
  13. },{
  14. icon: 'code',
  15. title: '考勤打卡',
  16. color: 'bluepurple',
  17. url: '/newsPages/pages2',
  18. author: '图鸟黑粉'
  19. },
  20. {
  21. icon: 'code',
  22. title: '访客统计',
  23. color: 'red',
  24. url: '/newsPages/pages3',
  25. author: '心之所向'
  26. },
  27. {
  28. icon: 'code',
  29. title: '学生体检',
  30. color: 'aquablue',
  31. url: '/newsPages/pages4',
  32. author: '请叫我神秘人'
  33. },
  34. {
  35. icon: 'code',
  36. title: '温度检测',
  37. color: 'orangered',
  38. url: '/newsPages/pages5',
  39. author: '哎哟你干嘛'
  40. }
  41. ]
  42. },
  43. {
  44. title: '二次更新',
  45. list: [{
  46. icon: 'code',
  47. title: '收入支出',
  48. color: 'blue',
  49. url: '/newsPages/pages6',
  50. author: '心若向阳'
  51. },
  52. {
  53. icon: 'code',
  54. title: '营业目标',
  55. color: 'orange',
  56. url: '/newsPages/pages7',
  57. author: '无名之辈'
  58. },
  59. {
  60. icon: 'code',
  61. title: '营业统计',
  62. color: 'indigo',
  63. url: '/newsPages/pages8',
  64. author: '那只猪'
  65. },
  66. {
  67. icon: 'code',
  68. title: '库存统计',
  69. color: 'orangeyellow',
  70. url: '/newsPages/pages9',
  71. author: '你的名字'
  72. },
  73. {
  74. icon: 'code',
  75. title: '收益来源',
  76. color: 'cyan',
  77. url: '/newsPages/pages10',
  78. author: '哒咩哒咩'
  79. },
  80. {
  81. icon: 'code',
  82. title: '区域销售',
  83. color: 'lime',
  84. url: '/newsPages/pages11',
  85. author: '你的名字'
  86. },
  87. {
  88. icon: 'code',
  89. title: '月度下载',
  90. color: 'teal',
  91. url: '/newsPages/pages12',
  92. author: '你的名字'
  93. },
  94. {
  95. icon: 'code',
  96. title: '公司股价',
  97. color: 'yellowgreen',
  98. url: '/newsPages/pages13',
  99. author: '你的名字'
  100. },
  101. {
  102. icon: 'code',
  103. title: '运动数据',
  104. color: 'green',
  105. url: '/newsPages/pages14',
  106. author: '不许爱我'
  107. }
  108. ]
  109. }
  110. ]
  111. }