forked from integrated_whb/integrated_whb_vue
24 lines
637 B
JavaScript
24 lines
637 B
JavaScript
|
// 将常用的值储存成常量,防止重复使用写错
|
||
|
|
||
|
// 头部导航条切换的model
|
||
|
export const MODEL = {
|
||
|
1: "prevention",
|
||
|
2: "educationAndTraining",
|
||
|
3: "highRisk",
|
||
|
4: "monitor",
|
||
|
5: "comprehensive",
|
||
|
};
|
||
|
// 头部导航条
|
||
|
export const MENU = [
|
||
|
{ title: "双重预防", model: MODEL["1"] },
|
||
|
{ title: "教育培训", model: MODEL["2"] },
|
||
|
{ title: "高危作业管理", model: MODEL["3"] },
|
||
|
{ title: "监测预警", model: MODEL["4"] },
|
||
|
{ title: "综合管理", model: MODEL["5"] },
|
||
|
];
|
||
|
|
||
|
export const styleText =
|
||
|
'<style type="text/css" media="print">\n' +
|
||
|
" @page { size: landscape; }\n" +
|
||
|
"</style>";
|