index.ts 188 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import { defHttp } from '/@/utils/http/axios'; enum HomeEnum { home = '/homepage/left/top', } export const getHomeData = () => { return defHttp.get({ url: HomeEnum.home, }); };