generated from Leo_Ding/web-template
Merge branch 'master' of https://gitlab.guxuan.icu/Leo_Ding/GPU_Admin
This commit is contained in:
commit
01feecd5b5
@ -1,4 +1,5 @@
|
||||
import refund from "../../../router/routes/refund";
|
||||
import user from "../../../router/routes/user";
|
||||
|
||||
export default {
|
||||
welcome: '欢迎',
|
||||
@ -52,4 +53,23 @@ export default {
|
||||
activityMgt: '活动管理(待开发)',
|
||||
userUpgrade: '用户升级管理(待开发)',
|
||||
bannerMgt: '轮播图管理',
|
||||
resource: '资源管理',
|
||||
host: '主机列表',
|
||||
computerCard: '计算卡列表',
|
||||
computerArea: '主机区域列表',
|
||||
mirror: '镜像管理',
|
||||
mirrorPublic: '公共镜像列表',
|
||||
mirrorSystem: '系统镜像列表',
|
||||
mirrorUser: '用户镜像列表',
|
||||
example: '实例管理',
|
||||
exampleList: '实例列表',
|
||||
user: '用户管理',
|
||||
userList: '用户列表',
|
||||
userSure: '待认证列表',
|
||||
userBlack: '黑名单列表',
|
||||
order: '订单管理',
|
||||
orderAll: '全部订单',
|
||||
orderIng: '运营中订单',
|
||||
orderArrearage: '欠费订单',
|
||||
orderTally: '结算订单',
|
||||
}
|
||||
|
||||
29
src/router/routes/example.js
Normal file
29
src/router/routes/example.js
Normal file
@ -0,0 +1,29 @@
|
||||
import { SettingOutlined } from '@ant-design/icons-vue'
|
||||
|
||||
export default [
|
||||
{
|
||||
path: 'example',
|
||||
name: 'example',
|
||||
component: 'RouteViewLayout',
|
||||
meta: {
|
||||
icon: 'icon-zhifudingjin',
|
||||
title: '实例管理',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'exampleList',
|
||||
name: 'exampleList',
|
||||
component: 'example/exampleList/index.vue',
|
||||
meta: {
|
||||
title: '实例列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
]
|
||||
@ -13,6 +13,10 @@ import topUp from './topUp'
|
||||
import water from './water'
|
||||
import refund from './refund'
|
||||
import common from './common'
|
||||
import resource from './resource'
|
||||
import mirror from './mirror'
|
||||
import user from './user'
|
||||
import order from './order'
|
||||
export default [
|
||||
...home,
|
||||
...form,
|
||||
@ -29,4 +33,8 @@ export default [
|
||||
...water,
|
||||
...refund,
|
||||
...common,
|
||||
...resource,
|
||||
...mirror,
|
||||
...user,
|
||||
...order,
|
||||
]
|
||||
|
||||
52
src/router/routes/mirror.js
Normal file
52
src/router/routes/mirror.js
Normal file
@ -0,0 +1,52 @@
|
||||
import { SettingOutlined } from '@ant-design/icons-vue'
|
||||
|
||||
export default [
|
||||
{
|
||||
path: 'mirror',
|
||||
name: 'mirror',
|
||||
component: 'RouteViewLayout',
|
||||
meta: {
|
||||
icon: 'icon-zhifudingjin',
|
||||
title: '镜像管理',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'mirrorUser',
|
||||
name: 'mirrorUser',
|
||||
component: 'mirror/mirrorUser/index.vue',
|
||||
meta: {
|
||||
title: '用户镜像列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'mirrorSystem',
|
||||
name: 'mirrorSystem',
|
||||
component: 'mirror/mirrorSystem/index.vue',
|
||||
meta: {
|
||||
title: '系统镜像列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'mirrorPublic',
|
||||
name: 'mirrorPublic',
|
||||
component: 'mirror/mirrorPublic/index.vue',
|
||||
meta: {
|
||||
title: '公用镜像列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
]
|
||||
63
src/router/routes/order.js
Normal file
63
src/router/routes/order.js
Normal file
@ -0,0 +1,63 @@
|
||||
import { SettingOutlined } from '@ant-design/icons-vue'
|
||||
|
||||
export default [
|
||||
{
|
||||
path: 'order',
|
||||
name: 'order',
|
||||
component: 'RouteViewLayout',
|
||||
meta: {
|
||||
icon: 'icon-zhifudingjin',
|
||||
title: '订单管理',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'orderAll',
|
||||
name: 'orderAll',
|
||||
component: 'order/orderAll/index.vue',
|
||||
meta: {
|
||||
title: '全部订单',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'orderIng',
|
||||
name: 'orderIng',
|
||||
component: 'order/orderIng/index.vue',
|
||||
meta: {
|
||||
title: '运营中订单',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'orderArrearage',
|
||||
name: 'orderArrearage',
|
||||
component: 'order/orderArrearage/index.vue',
|
||||
meta: {
|
||||
title: '欠费订单',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'orderTally',
|
||||
name: 'orderTally',
|
||||
component: 'order/orderTally/index.vue',
|
||||
meta: {
|
||||
title: '结算订单',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
]
|
||||
52
src/router/routes/resource.js
Normal file
52
src/router/routes/resource.js
Normal file
@ -0,0 +1,52 @@
|
||||
import { SettingOutlined } from '@ant-design/icons-vue'
|
||||
|
||||
export default [
|
||||
{
|
||||
path: 'resource',
|
||||
name: 'resource',
|
||||
component: 'RouteViewLayout',
|
||||
meta: {
|
||||
icon: 'icon-zhifudingjin',
|
||||
title: '资源管理',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'host',
|
||||
name: 'host',
|
||||
component: 'resource/host/index.vue',
|
||||
meta: {
|
||||
title: '主机列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'computerCard',
|
||||
name: 'computerCard',
|
||||
component: 'resource/computerCard/index.vue',
|
||||
meta: {
|
||||
title: '计算卡列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'computerArea',
|
||||
name: 'computerArea',
|
||||
component: 'resource/computerArea/index.vue',
|
||||
meta: {
|
||||
title: '主机区域列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
]
|
||||
52
src/router/routes/user.js
Normal file
52
src/router/routes/user.js
Normal file
@ -0,0 +1,52 @@
|
||||
import { SettingOutlined } from '@ant-design/icons-vue'
|
||||
|
||||
export default [
|
||||
{
|
||||
path: 'user',
|
||||
name: 'user',
|
||||
component: 'RouteViewLayout',
|
||||
meta: {
|
||||
icon: 'icon-zhifudingjin',
|
||||
title: '用户管理',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'userSure',
|
||||
name: 'userSure',
|
||||
component: 'user/userSure/index.vue',
|
||||
meta: {
|
||||
title: '待认证列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'userList',
|
||||
name: 'userList',
|
||||
component: 'user/userList/index.vue',
|
||||
meta: {
|
||||
title: '用户列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'userBlack',
|
||||
name: 'userBlack',
|
||||
component: 'user/userBlack/index.vue',
|
||||
meta: {
|
||||
title: '黑名单列表',
|
||||
isMenu: true,
|
||||
keepAlive: true,
|
||||
permission: '*',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
]
|
||||
0
src/views/mirror/mirrorPublic/index.vue
Normal file
0
src/views/mirror/mirrorPublic/index.vue
Normal file
0
src/views/mirror/mirrorSystem/index.vue
Normal file
0
src/views/mirror/mirrorSystem/index.vue
Normal file
0
src/views/mirror/mirrorUser/index.vue
Normal file
0
src/views/mirror/mirrorUser/index.vue
Normal file
0
src/views/order/orderAll/index.vue
Normal file
0
src/views/order/orderAll/index.vue
Normal file
0
src/views/order/orderArrearage/index.vue
Normal file
0
src/views/order/orderArrearage/index.vue
Normal file
0
src/views/order/orderIng/index.vue
Normal file
0
src/views/order/orderIng/index.vue
Normal file
0
src/views/order/orderTally/index.vue
Normal file
0
src/views/order/orderTally/index.vue
Normal file
0
src/views/resource/computerArea/index.vue
Normal file
0
src/views/resource/computerArea/index.vue
Normal file
0
src/views/resource/computerCard/index.vue
Normal file
0
src/views/resource/computerCard/index.vue
Normal file
0
src/views/resource/host/index.vue
Normal file
0
src/views/resource/host/index.vue
Normal file
0
src/views/user/userBlack/index.vue
Normal file
0
src/views/user/userBlack/index.vue
Normal file
0
src/views/user/userList/index.vue
Normal file
0
src/views/user/userList/index.vue
Normal file
0
src/views/user/userSure/index.vue
Normal file
0
src/views/user/userSure/index.vue
Normal file
Loading…
x
Reference in New Issue
Block a user