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

This commit is contained in:
puhui999 2023-03-21 16:17:44 +08:00
parent aad49fd5e9
commit 7697e5c358

View File

@ -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',