提交 66414ec6 作者: ZhangLingKun

优化:问题修复

上级 a0184061
流水线 #8643 已通过 于阶段
in 1 分 2 秒
...@@ -245,6 +245,146 @@ export const routerList: Array<RouteObjectType> = [ ...@@ -245,6 +245,146 @@ export const routerList: Array<RouteObjectType> = [
}, },
}, },
{ {
path: '/resourceManage',
element: <LayoutView />,
errorElement: <ErrorPage />,
meta: {
id: 800,
icon: <DribbbleOutlined />,
title: '店铺管理',
},
children: [
{
path: '/resourceManage/requirementsGathering',
element: withLoadingComponent(<GatheringListView />),
errorElement: <ErrorPage />,
meta: {
id: 810,
title: '需求收集',
icon: <MonitorOutlined />,
},
},
{
path: '/resourceManage/gatherDetail',
element: withLoadingComponent(<GatherDetailView />),
errorElement: <ErrorPage />,
meta: {
id: 811,
title: '需求详情',
hidden: true,
icon: <MonitorOutlined />,
pid: 810,
},
},
{
path: '/resourceManage/materielManage',
element: withLoadingComponent(<MaterielManageView />),
errorElement: <ErrorPage />,
meta: {
id: 820,
title: '宣传管理',
icon: <PictureOutlined />,
},
},
{
path: '/resourceManage/materielManage/detail',
element: withLoadingComponent(<MaterielManageDetail />),
errorElement: <ErrorPage />,
meta: {
id: 821,
title: '宣传管理详情',
icon: <SketchOutlined />,
hidden: true,
pid: 820,
},
},
{
path: '/resourceManage/tagManage',
element: withLoadingComponent(<TagManageView />),
errorElement: <ErrorPage />,
meta: {
id: 830,
title: '标签管理',
icon: <PaperClipOutlined />,
},
},
{
path: '/resourceManage/industryNews',
element: withLoadingComponent(<IndustryNewsView />),
errorElement: <ErrorPage />,
meta: {
id: 840,
title: '行业新闻',
icon: <ReadOutlined />,
},
},
{
path: '/resourceManage/tenderManage',
element: withLoadingComponent(<TenderManageView />),
errorElement: <ErrorPage />,
meta: {
id: 850,
title: '招标快讯',
icon: <CoffeeOutlined />,
},
},
{
path: '/resourceManage/tenderManage/detail',
element: withLoadingComponent(<TenderManageDetail />),
errorElement: <ErrorPage />,
meta: {
id: 851,
title: '招标快讯详情',
icon: <CoffeeOutlined />,
hidden: true,
pid: 850,
},
},
{
path: '/resourceManage/tenderManage/feedback',
element: withLoadingComponent(<TenderManageFeedback />),
errorElement: <ErrorPage />,
meta: {
id: 852,
title: '用户反馈',
icon: <CoffeeOutlined />,
hidden: true,
pid: 850,
},
},
{
path: '/resourceManage/businessCaseManage',
element: withLoadingComponent(<BusinessCaseManage />),
errorElement: <ErrorPage />,
meta: {
id: 860,
title: '业务案例',
icon: <AliwangwangOutlined />,
},
},
{
path: '/resourceManage/noticeManage',
element: withLoadingComponent(<NoticeManageView />),
errorElement: <ErrorPage />,
meta: {
id: 870,
title: '通知管理',
icon: <CommentOutlined />,
},
},
{
path: '/resourceManage/storeDecorate',
element: withLoadingComponent(<StoreDecoratePage />),
errorElement: <ErrorPage />,
meta: {
id: 880,
title: '店铺页面',
icon: <ShopOutlined />,
},
},
],
},
{
path: '/customManage', path: '/customManage',
element: <LayoutView />, element: <LayoutView />,
errorElement: <ErrorPage />, errorElement: <ErrorPage />,
...@@ -868,146 +1008,6 @@ export const routerList: Array<RouteObjectType> = [ ...@@ -868,146 +1008,6 @@ export const routerList: Array<RouteObjectType> = [
], ],
}, },
{ {
path: '/resourceManage',
element: <LayoutView />,
errorElement: <ErrorPage />,
meta: {
id: 800,
icon: <DribbbleOutlined />,
title: '资源管理',
},
children: [
{
path: '/resourceManage/requirementsGathering',
element: withLoadingComponent(<GatheringListView />),
errorElement: <ErrorPage />,
meta: {
id: 810,
title: '需求收集',
icon: <MonitorOutlined />,
},
},
{
path: '/resourceManage/gatherDetail',
element: withLoadingComponent(<GatherDetailView />),
errorElement: <ErrorPage />,
meta: {
id: 811,
title: '需求详情',
hidden: true,
icon: <MonitorOutlined />,
pid: 810,
},
},
{
path: '/resourceManage/materielManage',
element: withLoadingComponent(<MaterielManageView />),
errorElement: <ErrorPage />,
meta: {
id: 820,
title: '宣传管理',
icon: <PictureOutlined />,
},
},
{
path: '/resourceManage/materielManage/detail',
element: withLoadingComponent(<MaterielManageDetail />),
errorElement: <ErrorPage />,
meta: {
id: 821,
title: '宣传管理详情',
icon: <SketchOutlined />,
hidden: true,
pid: 820,
},
},
{
path: '/resourceManage/tagManage',
element: withLoadingComponent(<TagManageView />),
errorElement: <ErrorPage />,
meta: {
id: 830,
title: '标签管理',
icon: <PaperClipOutlined />,
},
},
{
path: '/resourceManage/industryNews',
element: withLoadingComponent(<IndustryNewsView />),
errorElement: <ErrorPage />,
meta: {
id: 840,
title: '行业新闻',
icon: <ReadOutlined />,
},
},
{
path: '/resourceManage/tenderManage',
element: withLoadingComponent(<TenderManageView />),
errorElement: <ErrorPage />,
meta: {
id: 850,
title: '招标快讯',
icon: <CoffeeOutlined />,
},
},
{
path: '/resourceManage/tenderManage/detail',
element: withLoadingComponent(<TenderManageDetail />),
errorElement: <ErrorPage />,
meta: {
id: 851,
title: '招标快讯详情',
icon: <CoffeeOutlined />,
hidden: true,
pid: 850,
},
},
{
path: '/resourceManage/tenderManage/feedback',
element: withLoadingComponent(<TenderManageFeedback />),
errorElement: <ErrorPage />,
meta: {
id: 852,
title: '用户反馈',
icon: <CoffeeOutlined />,
hidden: true,
pid: 850,
},
},
{
path: '/resourceManage/businessCaseManage',
element: withLoadingComponent(<BusinessCaseManage />),
errorElement: <ErrorPage />,
meta: {
id: 860,
title: '业务案例',
icon: <AliwangwangOutlined />,
},
},
{
path: '/resourceManage/noticeManage',
element: withLoadingComponent(<NoticeManageView />),
errorElement: <ErrorPage />,
meta: {
id: 870,
title: '通知管理',
icon: <CommentOutlined />,
},
},
{
path: '/resourceManage/storeDecorate',
element: withLoadingComponent(<StoreDecoratePage />),
errorElement: <ErrorPage />,
meta: {
id: 880,
title: '店铺页面',
icon: <ShopOutlined />,
},
},
],
},
{
path: '/activityManage', path: '/activityManage',
element: <LayoutView />, element: <LayoutView />,
errorElement: <ErrorPage />, errorElement: <ErrorPage />,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论