新增兑换
This commit is contained in:
@@ -19,7 +19,6 @@ namespace FGUI.JMain
|
||||
public GButton btn_admin;
|
||||
public btn_question btn_question;
|
||||
public GButton btn_saveingpot;
|
||||
public GButton btn_cashout;
|
||||
public btn_petty btn_petty;
|
||||
public GButton btn_play;
|
||||
public GButton btn_wb;
|
||||
@@ -46,10 +45,9 @@ namespace FGUI.JMain
|
||||
btn_admin = (GButton)GetChildAt(12);
|
||||
btn_question = (btn_question)GetChildAt(13);
|
||||
btn_saveingpot = (GButton)GetChildAt(14);
|
||||
btn_cashout = (GButton)GetChildAt(15);
|
||||
btn_petty = (btn_petty)GetChildAt(16);
|
||||
btn_play = (GButton)GetChildAt(17);
|
||||
btn_wb = (GButton)GetChildAt(18);
|
||||
btn_petty = (btn_petty)GetChildAt(15);
|
||||
btn_play = (GButton)GetChildAt(16);
|
||||
btn_wb = (GButton)GetChildAt(17);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,9 @@ namespace FGUI.JMall
|
||||
{
|
||||
public static void BindAll()
|
||||
{
|
||||
UIObjectFactory.SetPackageItemExtension(com_exchange.URL, typeof(com_exchange));
|
||||
UIObjectFactory.SetPackageItemExtension(btn_setnum.URL, typeof(btn_setnum));
|
||||
UIObjectFactory.SetPackageItemExtension(com_makeup.URL, typeof(com_makeup));
|
||||
UIObjectFactory.SetPackageItemExtension(com_mall.URL, typeof(com_mall));
|
||||
UIObjectFactory.SetPackageItemExtension(com_mall_carditem.URL, typeof(com_mall_carditem));
|
||||
UIObjectFactory.SetPackageItemExtension(com_mall_coinitem.URL, typeof(com_mall_coinitem));
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.JMall
|
||||
{
|
||||
public partial class btn_setnum : GButton
|
||||
{
|
||||
public Controller type;
|
||||
public const string URL = "ui://wj1zvor9pf31x";
|
||||
|
||||
public static btn_setnum CreateInstance()
|
||||
{
|
||||
return (btn_setnum)UIPackage.CreateObject("JMall", "btn_setnum");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
type = GetControllerAt(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9958109f48115094cbea8bc607a89f41
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,47 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.JMall
|
||||
{
|
||||
public partial class com_exchange : GComponent
|
||||
{
|
||||
public btn_setnum btn_subcard;
|
||||
public btn_setnum btn_addcard;
|
||||
public GTextField text_card_num;
|
||||
public btn_redeem_coin btn_exchange_card;
|
||||
public btn_setnum btn_subamazon;
|
||||
public btn_setnum btn_addamazon;
|
||||
public GTextField text_amazon_num;
|
||||
public btn_redeem_coin btn_exchange_amazon;
|
||||
public GTextField text_amazon_ch;
|
||||
public com_makeup com_makeup0;
|
||||
public com_makeup com_makeup1;
|
||||
public com_makeup com_makeup2;
|
||||
public const string URL = "ui://wj1zvor9pf31j";
|
||||
|
||||
public static com_exchange CreateInstance()
|
||||
{
|
||||
return (com_exchange)UIPackage.CreateObject("JMall", "com_exchange");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
btn_subcard = (btn_setnum)GetChildAt(5);
|
||||
btn_addcard = (btn_setnum)GetChildAt(6);
|
||||
text_card_num = (GTextField)GetChildAt(7);
|
||||
btn_exchange_card = (btn_redeem_coin)GetChildAt(8);
|
||||
btn_subamazon = (btn_setnum)GetChildAt(10);
|
||||
btn_addamazon = (btn_setnum)GetChildAt(11);
|
||||
text_amazon_num = (GTextField)GetChildAt(12);
|
||||
btn_exchange_amazon = (btn_redeem_coin)GetChildAt(13);
|
||||
text_amazon_ch = (GTextField)GetChildAt(16);
|
||||
com_makeup0 = (com_makeup)GetChildAt(17);
|
||||
com_makeup1 = (com_makeup)GetChildAt(18);
|
||||
com_makeup2 = (com_makeup)GetChildAt(19);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0bea775c9acff6a4b92f889ef597d4fc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||||
|
||||
using FairyGUI;
|
||||
using FairyGUI.Utils;
|
||||
|
||||
namespace FGUI.JMall
|
||||
{
|
||||
public partial class com_makeup : GComponent
|
||||
{
|
||||
public GProgressBar progress_makeup;
|
||||
public GTextField text_progress;
|
||||
public GButton btn_makeup;
|
||||
public GRichTextField text_makeup;
|
||||
public const string URL = "ui://wj1zvor9pf31z";
|
||||
|
||||
public static com_makeup CreateInstance()
|
||||
{
|
||||
return (com_makeup)UIPackage.CreateObject("JMall", "com_makeup");
|
||||
}
|
||||
|
||||
public override void ConstructFromXML(XML xml)
|
||||
{
|
||||
base.ConstructFromXML(xml);
|
||||
|
||||
progress_makeup = (GProgressBar)GetChildAt(2);
|
||||
text_progress = (GTextField)GetChildAt(3);
|
||||
btn_makeup = (GButton)GetChildAt(4);
|
||||
text_makeup = (GRichTextField)GetChildAt(5);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1eb56f50fb28fea4d98304d7821b072a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user