后台:可以设置固定ip属地

This commit is contained in:
luying
2022-08-04 19:33:36 +08:00
parent 0d1eb9c7b6
commit 0449983cd1
8 changed files with 22 additions and 18 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ export class PlayerDetail {
if(role.head) this.head = role.head;
if(role.frame) this.frame = role.frame;
if(role.spine) this.spine = role.spine;
if(role.ipLocation) this.ipLocation = role.ipLocation;
this.ipLocation = role.fixedIpLocation||role.ipLocation||'未知';
}
setCe(ce: number) {
+1 -1
View File
@@ -30,7 +30,7 @@ export class FriendParams {
this.ce = role.ce;
this.title = role.title;
this.guildName = role.guildName||'';
this.ipLocation = role.ipLocation||'';
this.ipLocation = role.fixedIpLocation||role.ipLocation||'未知';
}
setServerName(serverId: number, serverName: string) {