// 将常用的值储存成常量,防止重复使用写错

// 头部导航条切换的model
export const MODEL = {
  1: "corpManagement",
  2: "mechanicalMaintenanceArchives",
  3: "prevention",
  4: "educationAndTraining",
  5: "comprehensive",
  6: "positioning",
};
// 头部导航条
export const MENU = [
  { title: "企业信息", model: MODEL["1"] },
  { title: "机务档案", model: MODEL["2"] },
  { title: "双重预防", model: MODEL["3"] },
  { title: "教育培训", model: MODEL["4"] },
  { title: "综合管理", model: MODEL["5"] },
  { title: "定位管理", model: MODEL["6"] },
];
// 安全生成及电子运单管理
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 = [
  { id: "委托方", name: "1" },
  { id: "确认方", name: "2" },
];
export const LOCATIONTYPEMENU = [
  { id: "起运地", name: "1" },
  { id: "目的地", name: "2" },
];
export const BOROUGHMENU = [
  { title: "湖北", model: MODEL["1"] },
  { title: "湖南", model: MODEL["2"] },
  { title: "四川", model: MODEL["3"] },
];

export const PRINT_STYLE =
  '<style type="text/css" media="print">\n' +
  "  @page { size: landscape; }\n" +
  "</style>";

export const SPECIAL_ENTERPRISES = [
  "fe58b51278094635800b944e4ae3a871",
  "0fa689dd674546b69ebd77728ffd1caa",
  "13cf0f4ec77e4d98ae8cdd9c3386ae0c",
];