config.ts 1.48 KB
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export const X_DATA = [
  '2022-11-08',
  '2022-11-09',
  '2022-11-10',
  '2022-11-11',
  '2022-11-12',
  '2022-11-13',
  '2022-11-14',
  '2022-11-15',
  '2022-11-16',
  '2022-11-17',
  '2022-11-18',
  '2022-11-19',
  '2022-11-20',
  '2022-11-21',
hucy's avatar
hucy committed
16 17 18 19 20 21 22 23 24
  '2022-11-22',
  '2022-11-23',
  '2022-11-24',
  '2022-11-25',
  '2022-11-26',
  '2022-11-27',
  '2022-11-28',
  '2022-11-29',
  '2022-11-30',
hucy's avatar
hucy committed
25 26 27 28 29 30 31
  '2022-12-01',
  '2022-12-02',
  '2022-12-03',
  '2022-12-04',
  '2022-12-05',
  '2022-12-06',
  '2022-12-07',
hucy's avatar
hucy committed
32 33 34 35
];

// 本土感染者
export const LOCAL_INFECTED = [
hucy's avatar
hucy committed
36
  30, 35, 50, 48, 57, 99, 133, 100, 121, 176, 211, 200, 316, 383, 473, 537, 591,
hucy's avatar
hucy committed
37
  735, 770, 910, 829, 705, 764, 516, 476, 462, 435, 339, 277, 162,
hucy's avatar
hucy committed
38 39 40 41
];

// 省感染者
export const PROVINCE_INNER_INFECTED = [
hucy's avatar
hucy committed
42
  16, 22, 28, 29, 40, 79, 115, 82, 107, 157, 192, 184, 280, 346, 428, 509, 547,
hucy's avatar
hucy committed
43
  690, 718, 853, 763, 660, 716, 501, 448, 430, 402, 334, 271, 159,
hucy's avatar
hucy committed
44 45 46 47
];

// 外省来(返)蓉感染者
export const PROVINCE_OUT_INFECTED = [
hucy's avatar
hucy committed
48
  14, 13, 22, 19, 17, 20, 18, 18, 14, 19, 19, 16, 36, 37, 45, 28, 44, 45, 52,
hucy's avatar
hucy committed
49
  57, 66, 45, 48, 15, 28, 32, 33, 5, 6, 3,
hucy's avatar
hucy committed
50 51 52 53
];

// 境外输入感染者
export const OFFSHORE_INPUT_INFECTED = [
hucy's avatar
hucy committed
54
  7, 15, 26, 10, 5, 9, 9, 8, 21, 17, 17, 12, 20, 8, 13, 11, 13, 22, 16, 13, 15,
hucy's avatar
hucy committed
55
  16, 20, 8, 29, 21, 23, 26, 17, 26,
hucy's avatar
hucy committed
56
];
hucy's avatar
hucy committed
57 58 59 60 61 62 63

export const LABEL_DATA = [
  '本土感染者',
  '省内感染者',
  '外省来(返)蓉感染者',
  '境外输入感染者',
];
hucy's avatar
hucy committed
64
export const COLOR_LIST = ['#FF6384', '#FF9F40', '#FFCD56', '#4BC0C0'];