feat: 菜单调整

This commit is contained in:
2025-12-11 20:31:46 +08:00
parent be2d2bbe31
commit 10204a0baf
3 changed files with 12 additions and 10 deletions

View File

@ -162,7 +162,7 @@ const downloadWithStyles = () => {
type: 'application/msword' type: 'application/msword'
}); });
saveAs(blob, 'styled-document.doc'); saveAs(blob, '模型研判报告.doc');
}; };
const SaveReport = () => { const SaveReport = () => {
console.log(props.textContent); console.log(props.textContent);

View File

@ -162,7 +162,7 @@ export const publicRoutes = [
{ {
path: "/consultation", path: "/consultation",
name: "consultation", name: "consultation",
component: () => import("@/views/consultation/demo") component: () => import("@/views/consultation/demo")
}, },
{ {
path: "/KeyPopulations", path: "/KeyPopulations",
@ -197,12 +197,7 @@ export const publicRoutes = [
icon: "article" icon: "article"
} }
}, },
{
path: "/fouColorWarning",
name: "fouColorWarning",
meta: { title: "四色预警", icon: "article" },
component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/fouColorWarning/index"),
},
{ {
path: "/behaviorWarnings", path: "/behaviorWarnings",
name: "behaviorWarnings", name: "behaviorWarnings",
@ -268,6 +263,7 @@ export const publicRoutes = [
// meta: { title: "布控预警", icon: "article" }, // meta: { title: "布控预警", icon: "article" },
// component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/warningBk/index"), // component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/warningBk/index"),
// }, // },
{ {
path: "/identityWarning", path: "/identityWarning",
name: "identityWarning", name: "identityWarning",
@ -295,6 +291,12 @@ export const publicRoutes = [
icon: "article" icon: "article"
} }
}, },
{
path: "/fouColorWarning",
name: "fouColorWarning",
meta: { title: "四色预警", icon: "article" },
component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/fouColorWarning/index"),
},
// { // {
// path: "/modelWarning", // path: "/modelWarning",
// name: "modelWarning", // name: "modelWarning",
@ -687,7 +689,7 @@ export const publicRoutes = [
icon: "article" icon: "article"
} }
}, },
{ {
path: "/ResearchHome", path: "/ResearchHome",
name: "ResearchHome", name: "ResearchHome",
component: () => import("@/views/backOfficeSystem/JudgmentHome/ResearchHome/index"), component: () => import("@/views/backOfficeSystem/JudgmentHome/ResearchHome/index"),

View File

@ -104,5 +104,5 @@ export function downloadDocWithStyle(textContent) {
type: 'application/msword' type: 'application/msword'
}); });
saveAs(blob, 'styled-document.doc'); saveAs(blob, '研判报告.doc');
}; };