- import APIConfig from './api.js';
- import efunRequest from '../utils/efunRequest'
- export default class LibraryUrl {
-
- static aabbcc(){
- alert(123)
- }
- static getIndex(ageGroup) {
- console.log(ageGroup)
- return efunRequest.getHttpRequest().url(APIConfig.getLibraryUrl(`/category`)).params({
- ageGroup
- }).get();
- }
- }
|