You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
378 B
21 lines
378 B
// 关系 对照的 图片
|
|
export const statusMap = {
|
|
// 已确认
|
|
1: "confirmed",
|
|
// 误报
|
|
2: "falsePositives",
|
|
// 已处理
|
|
3: "processed",
|
|
// 处理中
|
|
4: "processing",
|
|
// 待确认
|
|
5: "toBeConfirmed",
|
|
// 上报
|
|
21: "processing21",
|
|
// 已完成
|
|
22: "confirmed22",
|
|
// 已终止
|
|
23: "toBeConfirmed23",
|
|
// 自动结束
|
|
24: "processed24",
|
|
};
|
|
|