api.js 415 B

1234567891011121314151617
  1. const url = {
  2. library_url: 'http://ott80testlibrary.yifangjiaoyu.cn/mobile/page',
  3. schedule_url: 'http://ott80test-schedule.yifangjiaoyu.cn/mobile/schedule/'
  4. }
  5. export default class APIConfig {
  6. static getLibraryUrl(path){
  7. return url.library_url + path
  8. }
  9. static getScheduleUrl(path){
  10. console.log(33333,url.schedule_url + path)
  11. return url.schedule_url + path
  12. }
  13. }