statusColor.js 387 B

123456789101112131415161718
  1. export const statusColor = (status)=> {
  2. let color = 'crm_state_blue';
  3. switch (status) {
  4. case 'wait_process':
  5. color = 'crm_state_yellow';
  6. break
  7. case 'processing':
  8. color = 'crm_state_orange';
  9. break
  10. case 'success':
  11. color = 'crm_state_blue';
  12. break
  13. case 'fail':
  14. color = 'crm_state_gray';
  15. break
  16. }
  17. return `state ${color}`;
  18. }