From d2d8982a787bf7267612c19983798d7aaa0c37fe Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期三, 14 六月 2023 16:22:37 +0800 Subject: [PATCH] 新增页面和配置,对接口 --- src/router/index.js | 34 ++++++++++++++++++++++++++-------- 1 files changed, 26 insertions(+), 8 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 5cc0150..8cbbfaa 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -53,11 +53,17 @@ component: () => import('@/views/Admin/Audit'), }, { - path: '/torelease', - name: 'torelease', + path: '/notice', + name: 'notice', meta: { title: '信息编辑' }, - component: () => import('@/views/Admin/Notice'), + component: () => import('@/views/Admin/notice'), }, + { + path: '/msgReview', + name: '/msgReview', + meta: { title: '信息审核' }, + component: () => import('@/views/Admin/msgReview'), + }, { path: '/report', name: 'report', @@ -68,7 +74,7 @@ path: '/history', name: 'history', meta: { title: '历史信息' }, - component: () => import('@/views/Admin/History'), + component: () => import('@/views/Admin/history'), }, { path: '/callRecord', @@ -76,6 +82,12 @@ meta: { title: '叫应记录' }, component: () => import('@/views/Admin/callRecord'), }, + { + path: '/massSend', + name: 'massSend', + meta: { title: '常规群发' }, + component: () => import('@/views/Admin/massSend'), + }, { path: '/msgRecord', name: 'msgRecord', @@ -95,11 +107,17 @@ component: () => import('@/views/Admin/userManage'), }, { - path: '/menu', - name: 'menu', - meta: { title: '菜单管理' }, - component: () => import('@/views/Admin/menuManage'), + path: '/smsSetting', + name: 'smsSetting', + meta: { title: '短信平台设置' }, + component: () => import('@/views/Admin/smsSetting'), }, + // { + // path: '/menu', + // name: 'menu', + // meta: { title: '菜单管理' }, + // component: () => import('@/views/Admin/menuManage'), + // }, ] }, ]; -- Gitblit v1.9.2