This commit is contained in:
liamzi
2025-01-15 11:21:49 +08:00
parent 3d7b8d705d
commit 48733f3b7c
2 changed files with 70 additions and 45 deletions

View File

@@ -81,6 +81,15 @@ export const allRoutes = [
hidden: true,
key: "company/quotaInfo",
},
{
path: "quotaInfo/preview/:id?",
hidden: true,
component: lazy(() => import("@/pages/company/quotation/view")),
name: "报价单预览",
icon: "file",
key: "company/quotaInfo/preview",
},
{
path: "project",
component: lazy(() => import("@/pages/company/project")),
@@ -140,7 +149,14 @@ export const allRoutes = [
icon: "appstore",
hidden: true,
key: "company/projectView",
}
},
{
path: "templateItemManage",
component: lazy(() => import("@/pages/company/service/itemsManange")),
name: "资源类型",
icon: "container",
key: "company/templateItem",
},
]
}
];