chenlei 5 months ago
parent
commit
9f4e786bc8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      convert/index.js

+ 1 - 1
convert/index.js

@@ -47,7 +47,7 @@ convert.unNull = (val) => {
 }
 convert.getOrderStatusStr = (settleStatus) => {
   const map = config.status.settleStatus
-  return convert.nullView(map.find((f) => f.value === String(settleStatus))?.label)
+  return convert.nullView(map.find((f) => f.value == String(settleStatus))?.label)
 }
 
 export default convert