mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-09 05:00:30 +08:00
23 lines
469 B
JavaScript
23 lines
469 B
JavaScript
/**
|
|
* Created by gxl.gao on 2017/10/24.
|
|
*/
|
|
import StatisticsPage from './statisticsClientPage/index'
|
|
|
|
module.exports = function () {
|
|
this.bindHook('header_menu', function (menu) {
|
|
menu.statisticsPage = {
|
|
path: '/statistic',
|
|
name: '数据统计',
|
|
icon: 'bar-chart',
|
|
adminFlag: true
|
|
}
|
|
})
|
|
this.bindHook('app_route', function (app) {
|
|
app.statisticsPage = {
|
|
path: '/statistic',
|
|
component: StatisticsPage
|
|
}
|
|
})
|
|
|
|
|
|
} |