import service from "./indexApi"; const homeApi = { selectHome(queryType){ //查询首页的数据 return service.post('/api/show/getShowList', {queryType: queryType}); } } export default homeApi;