9 lines
209 B

4 months ago
4 months ago
4 months ago
  1. import service from "./indexApi";
  2. const zhiboApi = {
  3. selectZhibo(queryType){
  4. //查询首页的数据
  5. return service.post('/api/live/getList', {queryType: queryType});
  6. }
  7. }
  8. export default zhiboApi;