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.

23 lines
337 B

10 months ago
  1. export const LOG_TAIL_STATUS = {
  2. WAITING: {
  3. value: 10,
  4. label: '等待',
  5. status: 'warning'
  6. },
  7. RUNNABLE: {
  8. value: 20,
  9. label: '正常',
  10. status: 'processing'
  11. },
  12. ERROR: {
  13. value: 30,
  14. label: '错误',
  15. status: 'error'
  16. },
  17. CLOSE: {
  18. value: 40,
  19. label: '关闭',
  20. status: 'default'
  21. }
  22. }