import { get } from "./request"; export interface DictItem { label: string; value: string; } export const getComponentDictByType = (type: string) => { return get("/dict/getComponentDictByType", { params: { type } }); }; export const getDictByKey = (dictKey: string) => { return get("/dict/getDictByKey", { params: { dictKey } }); };