Sign in

简柏林 / thingskit-front · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-front
  • src
  • api
  • dashboard
  • index.ts
  • feat:地理位置完成,首页条件判断完成,接口待调试,设备修改字段。
    4601105b
    sqy authored
    2022-01-06 20:43:08 +0800  
    Browse Files »
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,
  });
};