|
|
@@ -5,7 +5,7 @@
|
|
|
export class HttpData {
|
|
|
|
|
|
/** 服务器类型 0测试服 1正式服 2李扬服 3悍国服 */
|
|
|
- public serverType: number = 0;
|
|
|
+ public serverType: number = 1;
|
|
|
|
|
|
public getServerUrl(): string {
|
|
|
switch (this.serverType) {
|
|
|
@@ -26,7 +26,7 @@ export class HttpData {
|
|
|
|
|
|
export enum ServerUrl {
|
|
|
test = 'https://cutfruitage-test.duiweize.com/', //测试服地址
|
|
|
- formal = '', //正式服地址
|
|
|
+ formal = 'https://cutfruitage.duiweize.com/', //正式服地址
|
|
|
liyang = 'http://172.16.15.231:9162/', //李杨服地址
|
|
|
hanguo = 'http://172.16.15.167:9162/', //悍国服地址
|
|
|
}
|