File size: 469 Bytes
7b71fb2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { RunningStatus } from '@/constants/knowledge';

export const RunningStatusMap = {
  [RunningStatus.UNSTART]: {
    label: 'UNSTART',
    color: 'cyan',
  },
  [RunningStatus.RUNNING]: {
    label: 'Parsing',
    color: 'blue',
  },
  [RunningStatus.CANCEL]: { label: 'CANCEL', color: 'orange' },
  [RunningStatus.DONE]: { label: 'SUCCESS', color: 'geekblue' },
  [RunningStatus.FAIL]: { label: 'FAIL', color: 'red' },
};

export * from '@/constants/knowledge';