Browse Source

IC卡管理页面

hzj18279462576@163.com 3 years ago
parent
commit
3c9e82a5fa
2 changed files with 1118 additions and 0 deletions
  1. 7 0
      admin/src/router/index.js
  2. 1111 0
      admin/src/views/icCard/index.vue

+ 7 - 0
admin/src/router/index.js

@@ -67,6 +67,13 @@ export const asyncRoutes = [
                 name: 'Inform',
                 meta: { isAuth: true, title: '系统通知' },
                 component: () => import('@/views/inform')
+            },
+            ,
+            {
+                path: 'icCard',
+                name: 'icCard',
+                meta: { isAuth: true, title: 'IC卡管理' },
+                component: () => import('@/views/icCard')
             }
         ]
     },

File diff suppressed because it is too large
+ 1111 - 0
admin/src/views/icCard/index.vue