调整菜单
This commit is contained in:
parent
a48f1f67d3
commit
907abed280
|
|
@ -2575,14 +2575,6 @@ export const constantRoutes = [{
|
|||
title: '认领情况统计表'
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'superviseAdjuest',
|
||||
name: 'superviseAdjuest',
|
||||
component: () => import('@/views/superviseAdjust/index.vue'),
|
||||
meta: {
|
||||
title: '属地机关调整'
|
||||
}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
|
@ -2924,11 +2916,12 @@ export const constantRoutes = [{
|
|||
]
|
||||
},
|
||||
{
|
||||
path: '/susnate',
|
||||
path: '/entManage',
|
||||
component: Layout,
|
||||
meta: {
|
||||
title: '涉嫌冒用他人身份取得登记信息',
|
||||
title: '主体管理',
|
||||
icon: 'dict'
|
||||
|
||||
},
|
||||
children: [
|
||||
{
|
||||
|
|
@ -2936,365 +2929,374 @@ export const constantRoutes = [{
|
|||
component: () => import('@/views/susnate/index.vue'),
|
||||
name: 'susnateList',
|
||||
meta: { title: '涉嫌冒用他人身份取得登记信息' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/expelled',
|
||||
component: Layout,
|
||||
meta: {
|
||||
title: '市场主体除名管理',
|
||||
icon: 'dict'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'list',
|
||||
component: () => import('@/views/expelled/list'),
|
||||
name: 'list',
|
||||
meta: { title: '除名名单库管理' }
|
||||
},
|
||||
{
|
||||
path: 'notice',
|
||||
component: () => import('@/views/expelled/notice'),
|
||||
name: 'notice',
|
||||
meta: { title: '除名告知通知书管理' }
|
||||
path: 'superviseAdjust',
|
||||
component: () => import('@/views/superviseAdjust/index.vue'),
|
||||
name: 'superviseAdjust',
|
||||
meta: { title: '属地机关调整' }
|
||||
},
|
||||
{
|
||||
path: 'objection',
|
||||
component: () => import('@/views/expelled/objection'),
|
||||
name: 'objection',
|
||||
meta: { title: '除名异议管理' }
|
||||
},
|
||||
{
|
||||
path: 'audit',
|
||||
component: () => import('@/views/expelled/audit'),
|
||||
name: 'audit',
|
||||
meta: { title: '执行决定管理' }
|
||||
},
|
||||
{
|
||||
path: 'announcement',
|
||||
component: () => import('@/views/expelled/announcement'),
|
||||
name: 'announcement',
|
||||
meta: { title: '除名公告管理' }
|
||||
},
|
||||
{
|
||||
path: 'exclusionRepairmMgt',
|
||||
component: () => import('@/views/expelled/除名修复管理/index'),
|
||||
name: 'exclusionRepairmMgt',
|
||||
meta: { title: '除名修复管理' }
|
||||
},
|
||||
{
|
||||
path: 'removeAccept',
|
||||
component: () => import('@/views/expelled/除名修复管理/一移出受理'),
|
||||
name: 'removeAccept',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 经办人' }
|
||||
},
|
||||
{
|
||||
path: 'removeReview',
|
||||
component: () => import('@/views/expelled/除名修复管理/二移出审核'),
|
||||
name: 'removeReview',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 审核人' }
|
||||
},
|
||||
{
|
||||
path: 'removeExamine',
|
||||
component: () => import('@/views/expelled/除名修复管理/三移出审批'),
|
||||
name: 'removeExamine',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 审批人' }
|
||||
},
|
||||
{
|
||||
path: 'recoverinfo',
|
||||
component: () => import('@/views/expelled/除名修复管理/审批详情'),
|
||||
name: 'recoverinfo',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 审批详情' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice',
|
||||
component: Layout,
|
||||
redirect: '/forceNotice/inclusion',
|
||||
meta: {
|
||||
title: '强制注销',
|
||||
icon: 'dict'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: '/forceNotice/inclusion',
|
||||
name: 'ForceNoticeInclusion',
|
||||
redirect: '/forceNotice/inclusion/todo',
|
||||
component: Empty,
|
||||
path: '/expelled',
|
||||
name: 'expelled',
|
||||
redirect: '/expelled/list',
|
||||
component: () =>
|
||||
import('@/layout/components/abnormal/AppAbnormal'),
|
||||
meta: {
|
||||
title: '拟强制注销公告'
|
||||
title: '市场主体除名管理'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '拟强制注销业务待办', type: 'todo' },
|
||||
{ title: '拟强制注销业务记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/inclusion/${meta.type}`,
|
||||
name: `ForceNoticeInclusion${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/inclusion/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'inclusion'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '拟强制注销业务待办', type: 'todo' },
|
||||
{ title: '拟强制注销业务记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/inclusion/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/inclusion/${meta.type}`,
|
||||
name: `ForceNoticeInclusion${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'inclusion'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/inclusion/${meta.type}/handle`,
|
||||
name: `ForceNoticeInclusion${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/inclusion/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'inclusion'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
{
|
||||
path: 'list',
|
||||
component: () => import('@/views/expelled/list'),
|
||||
name: 'list',
|
||||
meta: { title: '除名名单库管理' }
|
||||
},
|
||||
{
|
||||
path: 'notice',
|
||||
component: () => import('@/views/expelled/notice'),
|
||||
name: 'notice',
|
||||
meta: { title: '除名告知通知书管理' }
|
||||
},
|
||||
{
|
||||
path: 'objection',
|
||||
component: () => import('@/views/expelled/objection'),
|
||||
name: 'objection',
|
||||
meta: { title: '除名异议管理' }
|
||||
},
|
||||
{
|
||||
path: 'audit',
|
||||
component: () => import('@/views/expelled/audit'),
|
||||
name: 'audit',
|
||||
meta: { title: '执行决定管理' }
|
||||
},
|
||||
{
|
||||
path: 'announcement',
|
||||
component: () => import('@/views/expelled/announcement'),
|
||||
name: 'announcement',
|
||||
meta: { title: '除名公告管理' }
|
||||
},
|
||||
{
|
||||
path: 'exclusionRepairmMgt',
|
||||
component: () => import('@/views/expelled/除名修复管理/index'),
|
||||
name: 'exclusionRepairmMgt',
|
||||
meta: { title: '除名修复管理' }
|
||||
},
|
||||
{
|
||||
path: 'removeAccept',
|
||||
component: () => import('@/views/expelled/除名修复管理/一移出受理'),
|
||||
name: 'removeAccept',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 经办人' }
|
||||
},
|
||||
{
|
||||
path: 'removeReview',
|
||||
component: () => import('@/views/expelled/除名修复管理/二移出审核'),
|
||||
name: 'removeReview',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 审核人' }
|
||||
},
|
||||
{
|
||||
path: 'removeExamine',
|
||||
component: () => import('@/views/expelled/除名修复管理/三移出审批'),
|
||||
name: 'removeExamine',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 审批人' }
|
||||
},
|
||||
{
|
||||
path: 'recoverinfo',
|
||||
component: () => import('@/views/expelled/除名修复管理/审批详情'),
|
||||
name: 'recoverinfo',
|
||||
hidden: true,
|
||||
meta: { title: '移出 - 审批详情' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/remove',
|
||||
name: 'ForceNoticeRemove',
|
||||
redirect: '/forceNotice/remove/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '终止拟强制注销'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '终止拟强制注销待办', type: 'todo' },
|
||||
{ title: '终止拟强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/remove/${meta.type}`,
|
||||
name: `ForceNoticeRemove${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/remove/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '终止拟强制注销待办', type: 'todo' },
|
||||
{ title: '终止拟强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/remove/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/remove/${meta.type}`,
|
||||
name: `ForceNoticeRemove${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/remove/${meta.type}/handle`,
|
||||
name: `ForceNoticeRemove${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/remove/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/force',
|
||||
name: 'ForceNoticeForce',
|
||||
redirect: '/forceNotice/force/todo',
|
||||
component: Empty,
|
||||
path: '/forceNotice',
|
||||
name: 'forceNotice',
|
||||
redirect: '/forceNotice/inclusion',
|
||||
component: () =>
|
||||
import('@/layout/components/abnormal/AppAbnormal'),
|
||||
meta: {
|
||||
title: '强制注销'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '强制注销待办', type: 'todo' },
|
||||
{ title: '强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/force/${meta.type}`,
|
||||
name: `ForceNoticeForce${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/force/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '强制注销待办', type: 'todo' },
|
||||
{ title: '强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/force/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/force/${meta.type}`,
|
||||
name: `ForceNoticeForce${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'force'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/force/${meta.type}/handle`,
|
||||
name: `ForceNoticeForce${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/force/handle.vue'),
|
||||
{
|
||||
path: '/forceNotice/inclusion',
|
||||
name: 'ForceNoticeInclusion',
|
||||
redirect: '/forceNotice/inclusion/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '拟强制注销公告'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '拟强制注销业务待办', type: 'todo' },
|
||||
{ title: '拟强制注销业务记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/inclusion/${meta.type}`,
|
||||
name: `ForceNoticeInclusion${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/inclusion/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'force'
|
||||
listType: 'inclusion'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/liccan',
|
||||
name: 'ForceNoticeLiccan',
|
||||
redirect: '/forceNotice/liccan/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '营业执照作废公告'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '营业执照作废待办', type: 'todo' },
|
||||
{ title: '营业执照作废记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/liccan/${meta.type}`,
|
||||
name: `ForceNoticeLiccan${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/liccan/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'liccan'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '营业执照作废待办', type: 'todo' },
|
||||
{ title: '营业执照作废记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/liccan/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/liccan/${meta.type}`,
|
||||
name: `ForceNoticeLiccan${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'liccan'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/liccan/${meta.type}/handle`,
|
||||
name: `ForceNoticeLiccan${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/liccan/handle.vue'),
|
||||
}),
|
||||
...[
|
||||
{ title: '拟强制注销业务待办', type: 'todo' },
|
||||
{ title: '拟强制注销业务记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/inclusion/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/inclusion/${meta.type}`,
|
||||
name: `ForceNoticeInclusion${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'inclusion'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/inclusion/${meta.type}/handle`,
|
||||
name: `ForceNoticeInclusion${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/inclusion/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'inclusion'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/remove',
|
||||
name: 'ForceNoticeRemove',
|
||||
redirect: '/forceNotice/remove/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '终止拟强制注销'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '终止拟强制注销待办', type: 'todo' },
|
||||
{ title: '终止拟强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/remove/${meta.type}`,
|
||||
name: `ForceNoticeRemove${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/remove/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '终止拟强制注销待办', type: 'todo' },
|
||||
{ title: '终止拟强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/remove/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/remove/${meta.type}`,
|
||||
name: `ForceNoticeRemove${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/remove/${meta.type}/handle`,
|
||||
name: `ForceNoticeRemove${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/remove/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/force',
|
||||
name: 'ForceNoticeForce',
|
||||
redirect: '/forceNotice/force/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '强制注销'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '强制注销待办', type: 'todo' },
|
||||
{ title: '强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/force/${meta.type}`,
|
||||
name: `ForceNoticeForce${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/force/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'remove'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '强制注销待办', type: 'todo' },
|
||||
{ title: '强制注销记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/force/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/force/${meta.type}`,
|
||||
name: `ForceNoticeForce${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'force'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/force/${meta.type}/handle`,
|
||||
name: `ForceNoticeForce${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/force/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'force'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/liccan',
|
||||
name: 'ForceNoticeLiccan',
|
||||
redirect: '/forceNotice/liccan/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '营业执照作废公告'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '营业执照作废待办', type: 'todo' },
|
||||
{ title: '营业执照作废记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/liccan/${meta.type}`,
|
||||
name: `ForceNoticeLiccan${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/liccan/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'liccan'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/recovery',
|
||||
name: 'ForceNoticeRecovery',
|
||||
redirect: '/forceNotice/recovery/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '恢复登记申请'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '恢复登记申请待办', type: 'todo' },
|
||||
{ title: '恢复登记申请记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/recovery/${meta.type}`,
|
||||
name: `ForceNoticeRecovery${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/recovery/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'recovery'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
}),
|
||||
...[
|
||||
{ title: '恢复登记申请待办', type: 'todo' },
|
||||
{ title: '恢复登记申请记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/recovery/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/recovery/${meta.type}`,
|
||||
name: `ForceNoticeRecovery${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'recovery'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/recovery/${meta.type}/handle`,
|
||||
name: `ForceNoticeRecovery${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/recovery/handle.vue'),
|
||||
}),
|
||||
...[
|
||||
{ title: '营业执照作废待办', type: 'todo' },
|
||||
{ title: '营业执照作废记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/liccan/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/liccan/${meta.type}`,
|
||||
name: `ForceNoticeLiccan${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'liccan'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/liccan/${meta.type}/handle`,
|
||||
name: `ForceNoticeLiccan${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/liccan/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'liccan'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/forceNotice/recovery',
|
||||
name: 'ForceNoticeRecovery',
|
||||
redirect: '/forceNotice/recovery/todo',
|
||||
component: Empty,
|
||||
meta: {
|
||||
title: '恢复登记申请'
|
||||
},
|
||||
children: [
|
||||
...[
|
||||
{ title: '恢复登记申请待办', type: 'todo' },
|
||||
{ title: '恢复登记申请记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/recovery/${meta.type}`,
|
||||
name: `ForceNoticeRecovery${meta.type}`,
|
||||
component: () => import('@/views/forceNotice/recovery/list.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'recovery'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
}),
|
||||
...[
|
||||
{ title: '恢复登记申请待办', type: 'todo' },
|
||||
{ title: '恢复登记申请记录', type: 'history' }
|
||||
].map((meta) => {
|
||||
return {
|
||||
path: `/forceNotice/recovery/${meta.type}/_handle`,
|
||||
redirect: `/forceNotice/recovery/${meta.type}`,
|
||||
name: `ForceNoticeRecovery${meta.type}_Hanlde`,
|
||||
component: Empty,
|
||||
meta: {
|
||||
...meta,
|
||||
listType: 'recovery'
|
||||
},
|
||||
hidden: true,
|
||||
children: [
|
||||
{
|
||||
path: `/forceNotice/recovery/${meta.type}/handle`,
|
||||
name: `ForceNoticeRecovery${meta.type}Hanlde`,
|
||||
component: () => import('@/views/forceNotice/recovery/handle.vue'),
|
||||
meta: {
|
||||
...meta,
|
||||
title: '办理',
|
||||
listType: 'recovery'
|
||||
},
|
||||
hidden: true
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue