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.
13 lines
229 B
13 lines
229 B
// 关系 对照的 图片
|
|
export const statusMap = {
|
|
// 已确认
|
|
1: "confirmed",
|
|
// 误报
|
|
2: "falsePositives",
|
|
// 已处理
|
|
3: "processed",
|
|
// 处理中
|
|
4: "processing",
|
|
// 待确认
|
|
5: "toBeConfirmed",
|
|
};
|
|
|