diff --git a/src/components/ypModel/index.vue b/src/components/ypModel/index.vue index dd87895..0a6dd67 100644 --- a/src/components/ypModel/index.vue +++ b/src/components/ypModel/index.vue @@ -162,7 +162,7 @@ const downloadWithStyles = () => { type: 'application/msword' }); - saveAs(blob, 'styled-document.doc'); + saveAs(blob, '模型研判报告.doc'); }; const SaveReport = () => { console.log(props.textContent); diff --git a/src/router/index.js b/src/router/index.js index 7c4dc73..e1f8c8f 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -162,7 +162,7 @@ export const publicRoutes = [ { path: "/consultation", name: "consultation", - component: () => import("@/views/consultation/demo") + component: () => import("@/views/consultation/demo") }, { path: "/KeyPopulations", @@ -197,12 +197,7 @@ export const publicRoutes = [ icon: "article" } }, - { - path: "/fouColorWarning", - name: "fouColorWarning", - meta: { title: "四色预警", icon: "article" }, - component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/fouColorWarning/index"), - }, + { path: "/behaviorWarnings", name: "behaviorWarnings", @@ -268,6 +263,7 @@ export const publicRoutes = [ // meta: { title: "布控预警", icon: "article" }, // component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/warningBk/index"), // }, + { path: "/identityWarning", name: "identityWarning", @@ -295,6 +291,12 @@ export const publicRoutes = [ icon: "article" } }, + { + path: "/fouColorWarning", + name: "fouColorWarning", + meta: { title: "四色预警", icon: "article" }, + component: () => import("@/views/backOfficeSystem/fourColorManage/warningControl/fouColorWarning/index"), + }, // { // path: "/modelWarning", // name: "modelWarning", @@ -687,7 +689,7 @@ export const publicRoutes = [ icon: "article" } }, - { + { path: "/ResearchHome", name: "ResearchHome", component: () => import("@/views/backOfficeSystem/JudgmentHome/ResearchHome/index"), diff --git a/src/utils/export.js b/src/utils/export.js index 0a1f433..492c9f4 100644 --- a/src/utils/export.js +++ b/src/utils/export.js @@ -104,5 +104,5 @@ export function downloadDocWithStyle(textContent) { type: 'application/msword' }); - saveAs(blob, 'styled-document.doc'); + saveAs(blob, '研判报告.doc'); };