/** * 请求地址 * * @format */ import {ConstValue} from './ConstValue' let base = 'http://192.168.31.100:8888/' class HttpUrl { static init(): void { if (CC_DEV) { base = 'http://192.168.31.100:8888/' } else if (ConstValue.DEBUG) { base = 'https://gameserver.black-art.cn/' } else { base = 'http://43.139.94.120:8888/' } } static get server(): string { return base + 'server_query_info' } } export {HttpUrl}