|
@@ -11,6 +11,7 @@ export class HomeVM extends FguiViewModel {
|
|
|
|
|
|
readonly GridRoot: fgui.GComponent;
|
|
|
readonly HdList: fgui.GList;
|
|
|
+ readonly HeadTopCom: fgui.GComponent;
|
|
|
readonly Top: fgui.GGroup;
|
|
|
readonly EquipCom1: fgui.GComponent;
|
|
|
readonly EquipCom2: fgui.GComponent;
|
|
@@ -38,6 +39,7 @@ export class HomeVM extends FguiViewModel {
|
|
|
super(panel);
|
|
|
this.GridRoot = panel.getChild("gridRoot") as fgui.GComponent;
|
|
|
this.HdList = panel.getChild("hdList") as fgui.GList;
|
|
|
+ this.HeadTopCom = panel.getChild("HeadTopCom") as fgui.GComponent;
|
|
|
this.Top = panel.getChild("top") as fgui.GGroup;
|
|
|
this.EquipCom1 = panel.getChild("EquipCom1") as fgui.GComponent;
|
|
|
this.EquipCom2 = panel.getChild("EquipCom2") as fgui.GComponent;
|