carousal.ts 163 B

123456789
  1. import httpClient from '@/api/httpClient'
  2. function getCarousalList() {
  3. return httpClient.get('/carousals/active-list')
  4. }
  5. export default {
  6. getCarousalList,
  7. }