|
@@ -11,6 +11,7 @@ namespace UI.ClothingShop
|
|
|
public GLoader m_loaBg;
|
|
|
public UI_ComClothingRole m_compHolder;
|
|
|
public UI_ComClothingShopItemInfo m_compItemInfo;
|
|
|
+ public GLoader m_Top_img;
|
|
|
public GComponent m_valueBar;
|
|
|
public GButton m_btnBack;
|
|
|
public GTextField m_txtTitle;
|
|
@@ -74,6 +75,7 @@ namespace UI.ClothingShop
|
|
|
m_loaBg = (GLoader)comp.GetChild("loaBg");
|
|
|
m_compHolder = (UI_ComClothingRole)UI_ComClothingRole.Create(comp.GetChild("compHolder"));
|
|
|
m_compItemInfo = (UI_ComClothingShopItemInfo)UI_ComClothingShopItemInfo.Create(comp.GetChild("compItemInfo"));
|
|
|
+ m_Top_img = (GLoader)comp.GetChild("Top_img");
|
|
|
m_valueBar = (GComponent)comp.GetChild("valueBar");
|
|
|
m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
|
m_txtTitle = (GTextField)comp.GetChild("txtTitle");
|
|
@@ -95,6 +97,7 @@ namespace UI.ClothingShop
|
|
|
m_compHolder = null;
|
|
|
m_compItemInfo.Dispose();
|
|
|
m_compItemInfo = null;
|
|
|
+ m_Top_img = null;
|
|
|
m_valueBar = null;
|
|
|
m_btnBack = null;
|
|
|
m_txtTitle = null;
|