From d59b2d89e90f2190d05ba9c710b0b76c8dd3c308 Mon Sep 17 00:00:00 2001
From: BigBoss <2280520255@qq.com>
Date: Wed, 24 Jun 2020 23:26:14 +0800
Subject: [PATCH] madd appManage page
---
src/router/modules/application.js | 15 +-
src/views/application/appList.vue | 82 +++++
src/views/application/appManage.vue | 623 ++++--------------------------------
src/views/login/index.vue | 6 +-
4 files changed, 161 insertions(+), 565 deletions(-)
create mode 100644 src/views/application/appList.vue
diff --git a/src/router/modules/application.js b/src/router/modules/application.js
index 1c580c6..45ff27b 100644
--- a/src/router/modules/application.js
+++ b/src/router/modules/application.js
@@ -13,13 +13,24 @@ const applicationRouter = {
},
children: [{
path: 'appManage',
- component: () => import('@/views/application/appManage'),
+ component: () => import('@/views/application/appManage'), // 应用管理/添加
name: 'appManage',
meta: {
title: '应用管理',
icon: 'component',
roles: ['admin', 'assistant'] // or you can only set roles in sub nav
}
- }]
+ },
+ {
+ path: 'appList',
+ component: () => import('@/views/application/appList'), // 应用列表
+ name: 'appList',
+ meta: {
+ title: '应用列表',
+ icon: 'list',
+ roles: ['admin', 'assistant'] // or you can only set roles in sub nav
+ }
+ }
+ ]
}
export default applicationRouter
diff --git a/src/views/application/appList.vue b/src/views/application/appList.vue
new file mode 100644
index 0000000..d607682
--- /dev/null
+++ b/src/views/application/appList.vue
@@ -0,0 +1,82 @@
+
+