docking-vue/src/assets/js/constant.js

18 lines
457 B
JavaScript
Raw Normal View History

2025-06-10 09:31:15 +08:00
// 将常用的值储存成常量,防止重复使用写错
// 头部导航条切换的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>";