福利界面报错
parent
46850f0dd4
commit
51089bd2c8
|
@ -31,10 +31,15 @@ end
|
||||||
function LogBlue( str )
|
function LogBlue( str )
|
||||||
Log("<color=#00f>"..str.."</color>")
|
Log("<color=#00f>"..str.."</color>")
|
||||||
end
|
end
|
||||||
|
|
||||||
function LogPink(str)
|
function LogPink(str)
|
||||||
Log("<color=#FF7AD7>"..str.."</color>")
|
Log("<color=#FF7AD7>"..str.."</color>")
|
||||||
end
|
end
|
||||||
|
function LogYellow(str)
|
||||||
|
Log("<color=yellow>"..str.."</color>")
|
||||||
|
end
|
||||||
|
function LogPurple(str)
|
||||||
|
Log("<color=purple>"..str.."</color>")
|
||||||
|
end
|
||||||
|
|
||||||
--带有颜色的打印 只支持2 4参数个数("red","") ("red","","#FFFFFF","")
|
--带有颜色的打印 只支持2 4参数个数("red","") ("red","","#FFFFFF","")
|
||||||
function LogColor(...)
|
function LogColor(...)
|
||||||
|
|
|
@ -417,7 +417,8 @@ PanelType = {
|
||||||
FindFairy = { 87, 16, 15}, -- 东海寻仙
|
FindFairy = { 87, 16, 15}, -- 东海寻仙
|
||||||
Talisman = {14}, -- 新法宝
|
Talisman = {14}, -- 新法宝
|
||||||
Guild = {14, 16, 65}, -- 新法宝
|
Guild = {14, 16, 65}, -- 新法宝
|
||||||
TimelimitCall={87,16} --限时召唤
|
TimelimitCall={87,16}, --限时召唤
|
||||||
|
QianKunBox={16,87},--乾坤包囊
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1319,6 +1320,7 @@ HELP_TYPE = {
|
||||||
TreasureCompose=56,-- 宝物合成
|
TreasureCompose=56,-- 宝物合成
|
||||||
TimeLimitedCall=57,-- 限时召唤
|
TimeLimitedCall=57,-- 限时召唤
|
||||||
TreasureOfHeaven=58,--天宫秘宝
|
TreasureOfHeaven=58,--天宫秘宝
|
||||||
|
QianKunBox=59,--乾坤宝囊
|
||||||
}
|
}
|
||||||
|
|
||||||
NumToComplexFont = {
|
NumToComplexFont = {
|
||||||
|
|
|
@ -113,7 +113,7 @@ function OperatingPanel:OnShow()
|
||||||
end
|
end
|
||||||
function OperatingPanel:OnSortingOrderChange()
|
function OperatingPanel:OnSortingOrderChange()
|
||||||
--特效穿透签到 和 礼包特殊处理
|
--特效穿透签到 和 礼包特殊处理
|
||||||
self.operatingContents[1]:OnSortingOrderChange( self.sortingOrder)
|
self.operatingContents[1]:OnSortingOrderChange( self.sortingOrder)
|
||||||
self.operatingContents[3]:OnSortingOrderChange( self.sortingOrder)
|
self.operatingContents[3]:OnSortingOrderChange( self.sortingOrder)
|
||||||
self.operatingContents[4]:OnSortingOrderChange( self.sortingOrder)
|
self.operatingContents[4]:OnSortingOrderChange( self.sortingOrder)
|
||||||
self.operatingContents[5]:OnSortingOrderChange( self.sortingOrder)
|
self.operatingContents[5]:OnSortingOrderChange( self.sortingOrder)
|
||||||
|
@ -200,6 +200,10 @@ function OperatingPanel:ShowTabContent(index)
|
||||||
self.operatingContents[curContent]:OnShow(self.sortingOrder)
|
self.operatingContents[curContent]:OnShow(self.sortingOrder)
|
||||||
self.UpView:OnOpen({ showType = UpViewOpenType.ShowLeft, panelType = PanelType.TimelimitCall })
|
self.UpView:OnOpen({ showType = UpViewOpenType.ShowLeft, panelType = PanelType.TimelimitCall })
|
||||||
return
|
return
|
||||||
|
elseif index == 11 then
|
||||||
|
self.operatingContents[curContent]:OnShow(self.sortingOrder)
|
||||||
|
self.UpView:OnOpen({ showType = UpViewOpenType.ShowLeft, panelType = PanelType.QianKunBox })--货币待修改
|
||||||
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.extraParam then
|
if self.extraParam then
|
||||||
|
|
|
@ -54,8 +54,8 @@ function TimeLimitedCall:InitComponent(gameObject)
|
||||||
self.hero2 = Util.GetGameObject(self.gameObject,"Bg/hero2")
|
self.hero2 = Util.GetGameObject(self.gameObject,"Bg/hero2")
|
||||||
self.hero3 = Util.GetGameObject(self.gameObject,"Bg/hero3")
|
self.hero3 = Util.GetGameObject(self.gameObject,"Bg/hero3")
|
||||||
|
|
||||||
self.recruitTimeUpdate = Util.GetGameObject(self.gameObject,"recruitTimesUpdate/Text") :GetComponent("Text")
|
-- self.recruitTimeUpdate = Util.GetGameObject(self.gameObject,"recruitTimesUpdate/Text") :GetComponent("Text")
|
||||||
self.recruitTimesUpdate = Util.GetGameObject(self.gameObject,"recruitTimesUpdate/Text1") :GetComponent("Text")
|
-- self.recruitTimesUpdate = Util.GetGameObject(self.gameObject,"recruitTimesUpdate/Text1") :GetComponent("Text")
|
||||||
end
|
end
|
||||||
|
|
||||||
function TimeLimitedCall:BindEvent()
|
function TimeLimitedCall:BindEvent()
|
||||||
|
|
Loading…
Reference in New Issue