integrated_traffic_vue/src/assets/js/constant.js

96 lines
3.0 KiB
JavaScript
Raw Normal View History

2024-01-04 09:02:38 +08:00
// 将常用的值储存成常量,防止重复使用写错
// 头部导航条切换的model
export const MODEL = {
2024-02-22 16:18:58 +08:00
1: "corpManagement",
2: "mechanicalMaintenanceArchives",
3: "prevention",
4: "educationAndTraining",
2024-01-04 09:02:38 +08:00
5: "comprehensive",
2024-02-21 10:41:40 +08:00
6: "positioning",
2024-01-04 09:02:38 +08:00
};
// 头部导航条
export const MENU = [
2024-02-22 16:18:58 +08:00
{ title: "企业信息", model: MODEL["1"] },
{ title: "机务档案", model: MODEL["2"] },
{ title: "双重预防", model: MODEL["3"] },
{ title: "教育培训", model: MODEL["4"] },
2024-01-04 09:02:38 +08:00
{ title: "综合管理", model: MODEL["5"] },
2024-02-22 09:16:01 +08:00
{ title: "定位管理", model: MODEL["6"] },
2024-01-04 09:02:38 +08:00
];
// 安全生成及电子运单管理
export const VEHICLEMENU = [
{ title: "鄂A35373", model: MODEL["1"] },
{ title: "渝B73752", model: MODEL["2"] },
{ title: "川C87376", model: MODEL["3"] },
];
export const PRACTITIONERMENU = [
{ title: "李某某", model: MODEL["1"] },
{ title: "张某某", model: MODEL["2"] },
{ title: "刘某某", model: MODEL["3"] },
];
export const TRUCKMENU = [
{ title: "货AA35373", model: MODEL["1"] },
{ title: "货B73752", model: MODEL["2"] },
{ title: "货C87376", model: MODEL["3"] },
];
export const PERSONTYPEMENU = [
{ title: "其他", model: MODEL["1"] },
{ title: "驾驶员", model: MODEL["2"] },
{ title: "监控员", model: MODEL["3"] },
{ title: "押运员", model: MODEL["4"] },
{ title: "安全负责人", model: MODEL["5"] },
];
export const CLIENTMENU = [
{ title: "李某某", model: MODEL["1"] },
{ title: "程某某", model: MODEL["2"] },
{ title: "方某某", model: MODEL["3"] },
];
export const CONFIRMMENU = [
{ title: "薛某某", model: MODEL["1"] },
{ title: "马某某", model: MODEL["2"] },
{ title: "林某某", model: MODEL["3"] },
];
export const STARTINGMENU = [
{ title: "河北", model: MODEL["1"] },
{ title: "河南", model: MODEL["2"] },
{ title: "山东", model: MODEL["3"] },
{ title: "山西", model: MODEL["4"] },
];
export const ENDMENU = [
{ title: "广东", model: MODEL["1"] },
{ title: "广西", model: MODEL["2"] },
{ title: "湖南", model: MODEL["3"] },
{ title: "湖北", model: MODEL["4"] },
];
export const CUSTOMERTYPEMENU = [
{ title: "委托方", model: MODEL["1"] },
{ title: "确认方", model: MODEL["2"] },
];
export const LOCATIONTYPEMENU = [
{ title: "公司", model: MODEL["1"] },
{ title: "仓库", model: MODEL["2"] },
{ title: "中转站", model: MODEL["3"] },
];
export const LOCATIONNAMEMENU = [
{ title: "中科", model: MODEL["1"] },
{ title: "中软", model: MODEL["2"] },
{ title: "中天", model: MODEL["3"] },
];
export const BOROUGHMENU = [
{ title: "湖北", model: MODEL["1"] },
{ title: "湖南", model: MODEL["2"] },
{ title: "四川", model: MODEL["3"] },
];
2024-01-10 13:52:16 +08:00
export const PRINT_STYLE =
2024-01-04 09:02:38 +08:00
'<style type="text/css" media="print">\n' +
" @page { size: landscape; }\n" +
"</style>";
2024-01-09 18:02:04 +08:00
export const SPECIAL_ENTERPRISES = [
"fe58b51278094635800b944e4ae3a871",
"0fa689dd674546b69ebd77728ffd1caa",
"13cf0f4ec77e4d98ae8cdd9c3386ae0c",
];