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) } }