the bola v2 website
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819
  1. //import some server backend
  2. //set app url from env file
  3. const server_url = "https://thebola.club";
  4. export default class API {
  5. constructor() {
  6. this.prefix = server_url;
  7. this.url = "/api";
  8. this.test = 200;
  9. }
  10. listLocation(_page, _pagesize, _callback) {
  11. let url = `${this.prefix}${this.url}/public/event/location?`
  12. console.log(url)
  13. }
  14. }