Преглед изворни кода

add: 添加获取指定字典指定值对应的label数据

puhui999 пре 2 година
родитељ
комит
7697e5c358
1 измењених фајлова са 10 додато и 1 уклоњено
  1. 10 1
      src/utils/dict.ts

+ 10 - 1
src/utils/dict.ts

@@ -69,7 +69,16 @@ export const getDictObj = (dictType: string, value: any) => {
     }
   })
 }
-
+export const getDictLabel = (dictType: string, value: any) => {
+  const dictOptions: DictDataType[] = getDictOptions(dictType)
+  const dictLabel = ref('')
+  dictOptions.forEach((dict: DictDataType) => {
+    if (dict.value === value) {
+      dictLabel.value = dict.label
+    }
+  })
+  return dictLabel.value
+}
 export enum DICT_TYPE {
   USER_TYPE = 'user_type',
   COMMON_STATUS = 'common_status',