parent
c1119ef3a2
commit
81fa7d3d71
|
@ -190,7 +190,7 @@ function FestevalPanel:RefreshSingleData(obj, data)
|
|||
obj.redpoint.gameObject:SetActive(false)
|
||||
obj.itemview.frameBtn:GetComponent("Button").enabled = true
|
||||
if obj.data.state == 0 then
|
||||
if self.curDay > config.Values[1][1] then
|
||||
if self.curDay >= config.Values[1][1] then
|
||||
obj.redpoint.gameObject:SetActive(true)
|
||||
obj.select.gameObject:SetActive(true)
|
||||
obj.itemview.frameBtn:GetComponent("Button").enabled = false
|
||||
|
|
|
@ -538,7 +538,7 @@ function this:BindEvent()
|
|||
end)
|
||||
--调研
|
||||
Util.AddClick(this.btnDiaoyan, function()
|
||||
OpenWeb("https://docs.google.com/forms/d/e/1FAIpQLScVbmO2_ib_qTan5L81l3ICEW-RHcqQiLHh8fsXs8l-KYsL3Q/viewform")
|
||||
OpenWeb("https://monkeyking.gamota.com/")
|
||||
end)
|
||||
--十五日登录奖励
|
||||
Util.AddClick(this.fgBtn, function()
|
||||
|
|
|
@ -106,6 +106,11 @@ function this.Pay(id, func)
|
|||
args[4] = sureFunc
|
||||
args[5] = nil
|
||||
UIManager.OpenPanel(UIName.GMCommonConfirmPanel, args)
|
||||
SubmitExtraData({
|
||||
type = SDKSubMitType.TYPE_CLICKRECHARGEPACKAGE,
|
||||
roleCreateTime = "" .. id,
|
||||
roleLevelUpTime = rechargeConfig.RechargeId
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
|
|
|
@ -53,8 +53,8 @@ function this:BindEvent()
|
|||
local oldPowerNum = FormationManager.GetFormationPower(FormationTypeDef.FORMATION_NORMAL)
|
||||
HeroManager.ResetHeroStar(data)
|
||||
HeroManager.SetTalismanLv(data, 1)
|
||||
HeroManager.SetSoulPrintNil(data)
|
||||
HeroManager.SetGodPrintNil(data)
|
||||
--HeroManager.SetSoulPrintNil(data)
|
||||
--HeroManager.SetGodPrintNil(data)
|
||||
PopupTipPanel.ShowTip(Language[12386])
|
||||
HeroPropManager.SetDirtyByType(data, Hero_Prop_Type.Base)
|
||||
HeroPropManager.SetDirtyByType(data, Hero_Prop_Type.Talisman)
|
||||
|
|
|
@ -758,7 +758,7 @@ function this:SetSelectBtn(index)
|
|||
tabs[index].title or
|
||||
"<size=45>" ..
|
||||
tabs[index].title ..
|
||||
"</size>" --tabs[index].title--
|
||||
"</size>" --tabs[index].title--
|
||||
end
|
||||
|
||||
-- tab改变事件
|
||||
|
@ -889,7 +889,6 @@ function this:UpdateHeroInfoData()
|
|||
--魂印按钮逻辑
|
||||
this.soulPrintBtn:SetActive(ActTimeCtrlManager.IsQualifiled(87) and
|
||||
curHeroData.heroConfig.MaxRank >= EquipSignUnlock[2][2])
|
||||
--神印按钮逻辑
|
||||
local config = ConfigManager.GetConfigData(ConfigName.SpecialConfig, 149)
|
||||
if config then
|
||||
local limits = string.split(config.Value, "#")
|
||||
|
|
|
@ -6,7 +6,7 @@ local funIndex = 1
|
|||
local TabBox = require("Modules/Common/TabBox")
|
||||
local _TabData = {
|
||||
[1] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = Language[12822], rpType = RedPointType.Setting_Head },
|
||||
--[2] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = "坐骑" , rpType = RedPointType.Setting_Ride},
|
||||
-- [2] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = "坐骑" , rpType = RedPointType.Setting_Ride},
|
||||
[2] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = Language[12823], rpType = RedPointType.Setting_Title },
|
||||
-- [4] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = "时装",rpType = RedPointType.Setting_Skin },
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ this.contents = {
|
|||
--称号
|
||||
-- [2] = {view = require("Modules/Setting/SettingPlayerTitle"), panelName = "settingPlayerTitle"},
|
||||
-- 时装
|
||||
--[2] = {view = require("Modules/Setting/SettingPlayerRide"), panelName = "settingPlayerRide"},
|
||||
-- [2] = {view = require("Modules/Setting/SettingPlayerRide"), panelName = "settingPlayerRide"},
|
||||
-- 称号
|
||||
[2] = { view = require("Modules/Setting/SettingPlayerTitle"), panelName = "settingPlayerTitle" },
|
||||
--[4] = {view = require("Modules/Setting/SettingPlayerSkin"), panelName = "settingPlayerSkin"},
|
||||
|
|
Loading…
Reference in New Issue