diff --git a/src/components/common/Sidebar.vue b/src/components/common/Sidebar.vue index 507e0b5..6313454 100644 --- a/src/components/common/Sidebar.vue +++ b/src/components/common/Sidebar.vue @@ -194,14 +194,14 @@ export default { index: 'operationAccountManagement', title: '运营账号管理' }, - // { - // index: 'transactionAnalysis', - // title: '账户交易分析' - // }, - // { - // index: 'revenueStatistics', - // title: '平台收益统计' - // } + { + index: 'platformNotification', + title: '平台通知管理' + }, + { + index: 'revenueStatistics', + title: '平台收益统计' + } ] }, // { diff --git a/src/components/page/platformManagement/platformNotification.vue b/src/components/page/platformManagement/platformNotification.vue new file mode 100644 index 0000000..9bbd6a2 --- /dev/null +++ b/src/components/page/platformManagement/platformNotification.vue @@ -0,0 +1,227 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 8ea1e99..5dc298d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -235,6 +235,11 @@ export default new Router({ } ] }, + { + path: '/platformNotification', + component: () => import(/* webpackChunkName: "revenueStatistics" */ '../components/page/platformManagement/platformNotification.vue'), + meta: { title: '平台通知管理' } + }, ] }, {