From c479bc4822a9c355d9d7e816076a9af146f24c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B0=B4=E8=90=BD=28YangLei=29?= Date: Mon, 28 Jun 2021 20:42:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=99=BB=E5=BD=95=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/table/index.vue | 45 ++++++++++++++++--- src/pages/system/view/log/login_log/form.vue | 3 ++ src/pages/system/view/log/login_log/index.vue | 31 +++++++++++++ src/router/config.js | 9 +++- 4 files changed, 81 insertions(+), 7 deletions(-) create mode 100644 src/pages/system/view/log/login_log/form.vue create mode 100644 src/pages/system/view/log/login_log/index.vue diff --git a/src/components/table/index.vue b/src/components/table/index.vue index 892ab92..b73e9da 100644 --- a/src/components/table/index.vue +++ b/src/components/table/index.vue @@ -7,7 +7,7 @@
- 重置 + 重置 查询
@@ -23,7 +23,13 @@ - + @@ -62,6 +68,11 @@ diff --git a/src/pages/system/view/log/login_log/form.vue b/src/pages/system/view/log/login_log/form.vue new file mode 100644 index 0000000..af14550 --- /dev/null +++ b/src/pages/system/view/log/login_log/form.vue @@ -0,0 +1,3 @@ + diff --git a/src/pages/system/view/log/login_log/index.vue b/src/pages/system/view/log/login_log/index.vue new file mode 100644 index 0000000..e8c9cdd --- /dev/null +++ b/src/pages/system/view/log/login_log/index.vue @@ -0,0 +1,31 @@ + + + diff --git a/src/router/config.js b/src/router/config.js index 782ebb0..33a0567 100644 --- a/src/router/config.js +++ b/src/router/config.js @@ -100,7 +100,14 @@ const options = { { path: 'log_management', name: '日志管理', - component: () => import('@/pages/system/view/log'), + component: BlankTemplateView, + children: [ + { + path: 'login_log', + name: '登录日志', + component: () => import('@/pages/system/view/log/login_log/index.vue'), + }, + ], }, { path: 'task_management', -- GitLab