You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

  1. import service from ".";
  2. const homeApi = {
  3. //分页查询
  4. getHomeData(PageNo,PageSize) {
  5. return service.post("/api/activity",{
  6. params:{
  7. PageNo,
  8. PageSize
  9. }
  10. });
  11. }
  12. };
  13. export default homeApi;