generated from Leo_Ding/web-template
初始化
This commit is contained in:
parent
be392b0464
commit
37601301ad
@ -66,4 +66,9 @@ export default {
|
||||
userList: '用户列表',
|
||||
userSure: '待认证列表',
|
||||
userBlack: '黑名单列表',
|
||||
order: '订单管理',
|
||||
orderAll: '全部订单',
|
||||
orderIng: '运营中订单',
|
||||
orderArrearage: '欠费订单',
|
||||
orderTally: '结算订单',
|
||||
}
|
||||
|
||||
@ -16,6 +16,7 @@ import common from './common'
|
||||
import resource from './resource'
|
||||
import mirror from './mirror'
|
||||
import user from './user'
|
||||
import order from './order'
|
||||
export default [
|
||||
...home,
|
||||
...form,
|
||||
@ -35,4 +36,5 @@ export default [
|
||||
...resource,
|
||||
...mirror,
|
||||
...user,
|
||||
...order,
|
||||
]
|
||||
|
||||
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: '*',
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
]
|
||||
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
Loading…
x
Reference in New Issue
Block a user