library.js 299 B

123456789101112
  1. import APIConfig from './api.js';
  2. import efunRequest from '../utils/efunRequest'
  3. export default class LibraryUrl {
  4. static getIndex(ageGroup) {
  5. return efunRequest.getHttpRequest().url(APIConfig.getLibraryUrl(`/category`)).params({
  6. ageGroup
  7. }).get();
  8. }
  9. }