generated from Leo_Ding/web-template
工单管理模块
This commit is contained in:
parent
47bd58577b
commit
249f1d2e55
@ -34,4 +34,9 @@ export default {
|
|||||||
'account.logout': '退出登录',
|
'account.logout': '退出登录',
|
||||||
'dict': '字典管理',
|
'dict': '字典管理',
|
||||||
'dict-detail': '字典数据',
|
'dict-detail': '字典数据',
|
||||||
|
workorderMenu: '工单管理',
|
||||||
|
mineWorderOrder: '我下的工单',
|
||||||
|
invalidWWzorkOrder: '无效工单',
|
||||||
|
abnormalWorkOrder: '异常工单',
|
||||||
|
serviceWorkOrder: '服务工单'
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,6 +10,7 @@ import platform from './platform'
|
|||||||
// import link from './link'
|
// import link from './link'
|
||||||
// import iframe from './iframe'
|
// import iframe from './iframe'
|
||||||
// import other from './other'
|
// import other from './other'
|
||||||
|
import workorder from './workorder'
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
...home,
|
...home,
|
||||||
@ -24,4 +25,5 @@ export default [
|
|||||||
// ...link,
|
// ...link,
|
||||||
// ...iframe,
|
// ...iframe,
|
||||||
// ...other,
|
// ...other,
|
||||||
|
...workorder,
|
||||||
]
|
]
|
||||||
|
|||||||
62
src/router/routes/workorder.js
Normal file
62
src/router/routes/workorder.js
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
import { ProfileOutlined } from '@ant-design/icons-vue'
|
||||||
|
|
||||||
|
export default [
|
||||||
|
{
|
||||||
|
path: 'workorderMenu',
|
||||||
|
name: 'workorderMenu',
|
||||||
|
component: 'RouteViewLayout',
|
||||||
|
meta: {
|
||||||
|
icon: ProfileOutlined,
|
||||||
|
title: '工单管理',
|
||||||
|
isMenu: true,
|
||||||
|
keepAlive: true,
|
||||||
|
permission: '*',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'mineWorderOrder/index.vue',
|
||||||
|
name: 'mineWorderOrder',
|
||||||
|
component: '/pages/workorderMenu/mineWorderOrder/index.vue',
|
||||||
|
meta: {
|
||||||
|
title: '我的工单',
|
||||||
|
isMenu: true,
|
||||||
|
keepAlive: true,
|
||||||
|
permission: '*',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'invalidWWzorkOrder/index.vue',
|
||||||
|
name: 'invalidWWzorkOrder',
|
||||||
|
component: '/pages/workorderMenu/invalidWWzorkOrder/index.vue',
|
||||||
|
meta: {
|
||||||
|
title: '无效工单',
|
||||||
|
isMenu: true,
|
||||||
|
keepAlive: true,
|
||||||
|
permission: '*',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'abnormalWorkOrder/index.vue',
|
||||||
|
name: 'abnormalWorkOrder',
|
||||||
|
component: '/pages/workorderMenu/abnormalWorkOrder/index.vue',
|
||||||
|
meta: {
|
||||||
|
title: '异常工单',
|
||||||
|
isMenu: true,
|
||||||
|
keepAlive: true,
|
||||||
|
permission: '*',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'serviceWorkOrder/index.vue',
|
||||||
|
name: 'serviceWorkOrder',
|
||||||
|
component: '/pages/workorderMenu/serviceWorkOrder/index.vue',
|
||||||
|
meta: {
|
||||||
|
title: '服务工单',
|
||||||
|
isMenu: true,
|
||||||
|
keepAlive: true,
|
||||||
|
permission: '*',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]
|
||||||
0
src/views/workorderMenu/abnormalWorkOrder/index.vue
Normal file
0
src/views/workorderMenu/abnormalWorkOrder/index.vue
Normal file
0
src/views/workorderMenu/mineWorderOrder/index.vue
Normal file
0
src/views/workorderMenu/mineWorderOrder/index.vue
Normal file
0
src/views/workorderMenu/serviceWorkOrder/index.vue
Normal file
0
src/views/workorderMenu/serviceWorkOrder/index.vue
Normal file
Loading…
x
Reference in New Issue
Block a user