gterFang/src/utils/api.js
2023-07-13 10:07:16 +08:00

13 lines
412 B
JavaScript

import axios from "./axios";
export default{
index:(params={})=>{//首页数据
return axios.get('/tenement/pc/api/home',params)
},
getApartment:(params={})=>{//获取首页公寓数据
return axios.get('/tenement/pc/api/home/getApartment',params)
},
recommendList:(params={})=>{//首页瀑布流
return axios.get('/tenement/pc/api/home/recommendList',params)
}
}