🐞 fix(gvg): 添加爵位参数

This commit is contained in:
luying
2023-03-22 20:43:48 +08:00
parent af87cc6b3f
commit d2aaf43ef1
5 changed files with 12 additions and 6 deletions

View File

@@ -796,6 +796,7 @@ export class MyTeamInfo {
head: number; // 保存头像
frame: number; // 保存相框
spine: number; // 保存形象
title: number; // 爵位
lv: number;
lineup: {
actorId: number; // 武将
@@ -820,6 +821,7 @@ export class MyTeamInfo {
this.head = team.head;
this.frame = team.frame;
this.spine = team.spine;
this.title = team.title;
this.lv = team.lv;
if(team.lineup) this.lineup = team.lineup.map(({ actorId, dataId, outIndex }) => ({ actorId, dataId, order: outIndex }));
this.durability = team.durability;