eight
2024-10-16 27d64c7c4a2b5647bc991aa8e69d6209202cc4b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// copy to vben-admin
 
export const queueStatusConvert = (status: number) => {
  if (5 === status)
    return '已过号';
  else if (7 === status)
    return '已过号-安装';
  else if (10 === status)
    return '排队中';
  else if (15 === status)
    return '已召回';
  else if (17 === status)
    return '已召回-安装';
  else if (20 === status)
    return '就诊准备';
  else if (30 === status)
    return '就诊中';
  else if (33 === status)
    return '已领用';
  else if (36 === status)
    return '安装中';
  else if (40 === status)
    return '已就诊';
  else
    return '未定义';
 
}