import api from "@/request"; import Taro from "@tarojs/taro"; type EnumType = 'CheckStatus' | 'DeleteFlag' | 'IsEnable' | 'IsOrNot' | 'Sex' | 'ServiceProjectType' | 'MiniProgramUserIdentity' | 'EducationLevel' export const initEnum = () => { api.get[]>>('/common/enums').then(resp => { Taro.setStorageSync('enumMap', resp.data) }) }; export const enumSelectNodes = (enumType: EnumType): SelectNodeVo[] => Taro.getStorageSync('enumMap')?.[enumType] export const getEnumByValue = (enumType: EnumType, value: T): null | SelectNodeVo => { const enumList = enumSelectNodes(enumType); if (!enumList) { return null; } for (let i = 0; i < enumList.length; i++) { if (value === enumList[i].value) { return enumList[i] } } return null; }; export const getEnumLabelByValue = (enumType: EnumType, value: T): string => { const enums = getEnumByValue(enumType, value) if (!enums) { return '-' } return enums.label; };