mock平台

client.js 469B

1234567891011121314151617181920212223
  1. /**
  2. * Created by gxl.gao on 2017/10/24.
  3. */
  4. import StatisticsPage from './statisticsClientPage/index'
  5. module.exports = function () {
  6. this.bindHook('header_menu', function (menu) {
  7. menu.statisticsPage = {
  8. path: '/statistic',
  9. name: '系统信息',
  10. icon: 'bar-chart',
  11. adminFlag: true
  12. }
  13. })
  14. this.bindHook('app_route', function (app) {
  15. app.statisticsPage = {
  16. path: '/statistic',
  17. component: StatisticsPage
  18. }
  19. })
  20. }