Explorar o código

chore: 字典值使用字符串匹配

lujialiang hai 2 semanas
pai
achega
d3bd6c9453
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/store/modules/dict/index.ts

+ 1 - 1
src/store/modules/dict/index.ts

@@ -56,7 +56,7 @@ export const useDictStore = defineStore(SetupStoreId.Dict, () => {
   }
 
   function findNameByValue(options: dictItem[], value: string, separator: string = ',') {
-    return options.flatMap(option => (option.value === value ? option.label : [])).join(separator);
+    return options.flatMap(option => (option.value === value.toString() ? option.label : [])).join(separator);
   }
 
   function findNameByDict(dictKey: string, value: string, separator: string = ',') {