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.

22 lines
440 B

5 months ago
  1. import service from ".";
  2. const ClubApi = {
  3. getClub(id){
  4. return service.get(
  5. '/clubpage/get-club',{
  6. params: {
  7. id: id
  8. }
  9. }
  10. );
  11. },
  12. getShows(id){
  13. return service.get(
  14. '/clubpage/get-club-shows',{
  15. params: {
  16. id: id
  17. }
  18. }
  19. )
  20. }
  21. }
  22. export default ClubApi;