张延森 2 anni fa
parent
commit
3078981f8b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      src/utils/hooks/useProcessStatus.js

+ 1
- 1
src/utils/hooks/useProcessStatus.js Vedi File

@@ -42,7 +42,7 @@ export function getProcessStatus(orderInfo) {
42 42
   }
43 43
 
44 44
   // 工作中
45
-  if (orderInfo.workStatus !== 3 && orderInfo.dispatchStatus) {
45
+  if (orderInfo.workStatus > 0 && orderInfo.workStatus < 3 && orderInfo.dispatchStatus) {
46 46
     return 3
47 47
   }
48 48