18 lines
457 B
JavaScript
18 lines
457 B
JavaScript
|
// 将常用的值储存成常量,防止重复使用写错
|
||
|
|
||
|
// 头部导航条切换的model
|
||
|
export const MODEL = {
|
||
|
1: "other",
|
||
|
2: "system",
|
||
|
};
|
||
|
// 头部导航条
|
||
|
export const MENU = [
|
||
|
{ title: "基础数据", model: MODEL["1"], icon: "database-position" },
|
||
|
{ title: "系统管理", model: MODEL["2"], icon: "setting" },
|
||
|
];
|
||
|
|
||
|
export const styleText =
|
||
|
'<style type="text/css" media="print">\n' +
|
||
|
" @page { size: landscape; }\n" +
|
||
|
"</style>";
|