🐞 fix(gvg): 修复零散小问题

This commit is contained in:
luying
2023-03-01 19:43:35 +08:00
parent bea3361cbe
commit 0f28628a64
8 changed files with 31 additions and 16 deletions
+2
View File
@@ -689,6 +689,7 @@ export class GVGAreaInMap {
// 地图右边列表上的队伍信息
export class GVGTeamInList {
areaId: number;
pointId: number;
teamCode: string;
roleName: string;
head: number;
@@ -705,6 +706,7 @@ export class GVGTeamInList {
constructor(team: GVGTeamType) {
if(!team) return;
this.areaId = team.areaId;
this.pointId = team.pointId;
this.teamCode = team.teamCode;
this.roleName = team.roleName;
this.head = team.head;