From 5ad0722311cb9532f247eb0a453b070ce6bc3878 Mon Sep 17 00:00:00 2001 From: ltlzx <942659938@qq.com> Date: Fri, 23 Jul 2021 10:25:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/Sidebar.vue | 16 +- .../platformNotification.vue | 227 ++++++++++++++++++ src/router/index.js | 5 + 3 files changed, 240 insertions(+), 8 deletions(-) create mode 100644 src/components/page/platformManagement/platformNotification.vue 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: '平台通知管理' } + }, ] }, {