2025-11-17 17:14:02 +08:00
|
|
|
/**
|
|
|
|
|
* 全局常量定义
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export {};
|
2026-02-02 11:14:41 +08:00
|
|
|
|
2026-02-04 15:33:11 +08:00
|
|
|
// 口门类型
|
|
|
|
|
export const AREA_TYPE_ENUM = [
|
|
|
|
|
{ name: "人行口门", bianma: "1" },
|
|
|
|
|
{ name: "车行口门", bianma: "2" },
|
|
|
|
|
{ name: "综合口门", bianma: "3" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 口门状态
|
|
|
|
|
export const AREA_STATUS_ENUM = [
|
|
|
|
|
{ name: "停用", bianma: "0" },
|
|
|
|
|
{ name: "正常", bianma: "1" },
|
|
|
|
|
{ name: "暂时关闭", bianma: "2" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 闸机类型
|
|
|
|
|
export const FARE_GATE_TYPE_ENUM = [
|
|
|
|
|
{ name: "入", bianma: "1" },
|
|
|
|
|
{ name: "出", bianma: "2" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 闸机类别
|
|
|
|
|
export const FARE_GATE_CATEGORY_ENUM = [
|
|
|
|
|
{ name: "人行闸机", bianma: "1" },
|
|
|
|
|
{ name: "车辆闸机", bianma: "2" },
|
|
|
|
|
{ name: "综合闸机", bianma: "3" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 闸机状态
|
|
|
|
|
export const FARE_GATE_STATUS_ENUM = [
|
|
|
|
|
{ name: "停用", bianma: "0" },
|
|
|
|
|
{ name: "正常", bianma: "1" },
|
|
|
|
|
{ name: "暂时关闭", bianma: "2" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 通道类型
|
|
|
|
|
export const CHANNEL_TYPE_ENUM = [
|
|
|
|
|
{ name: "人行通道", bianma: "1" },
|
|
|
|
|
{ name: "车辆通道", bianma: "2" },
|
|
|
|
|
{ name: "综合通道", bianma: "3" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 通道状态
|
|
|
|
|
export const CHANNEL_STATUS_ENUM = [
|
|
|
|
|
{ name: "停用", bianma: "0" },
|
|
|
|
|
{ name: "正常", bianma: "1" },
|
|
|
|
|
{ name: "暂时关闭", bianma: "2" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 车辆类型
|
2026-02-02 11:14:41 +08:00
|
|
|
export const VEHICLE_TYPE_ENUM = [
|
|
|
|
|
{ bianma: "1", name: "单位车辆" },
|
|
|
|
|
{ bianma: "2", name: "员工车辆" },
|
2025-12-29 10:59:19 +08:00
|
|
|
];
|
2026-02-04 15:33:11 +08:00
|
|
|
|
|
|
|
|
// 当前在港状态
|
2026-02-02 11:14:41 +08:00
|
|
|
export const CURRENT_IN_PORT_STATUS_ENUM = [
|
|
|
|
|
{ name: "港内", bianma: "1" },
|
|
|
|
|
{ name: "港外", bianma: "2" },
|
2025-12-29 10:59:19 +08:00
|
|
|
];
|