【七界试炼】七界币增加加号

dev_chengFeng
ZhangBiao 2021-09-11 15:47:19 +08:00
parent 4eb8e566fe
commit 41282c144c
5 changed files with 14 additions and 4 deletions

View File

@ -486,7 +486,7 @@ PanelType = {
XiangYaoDuoBao = {14,16,1220},--降妖夺宝
NiuQiChongTian = {14,16,1300},--牛气冲天
XiuXing = {14,16,1226},--修行
QiJie = {14,16,16},--七界试炼
QiJie = {14,16,1240},--七界试炼
WorldArena = { 14,16,106}, --玉虚论道
}
@ -553,6 +553,7 @@ UpViewRechargeType = {
LuoFuJingShi = 1207,--罗浮晶石
SuiFanXingCheng = 1007, -- 碎繁星辰
yuxulundaoTicket=106, --玉虚论道邀请函
QiJieCoin = 1240,--七界币
}
SHOP_PAGE = {

View File

@ -162,7 +162,7 @@ function JumpServerPanel:BtnClick(id)
end
if id == JumpServer_Type.QiJieShiLian then
local qiejieConfig = ConfigManager.GetConfig(ConfigName.QijieStage)
NetManager.SevenWorldInfoRequest(nil,function (msg)
NetManager.SevenWorldInfoRequest(0,function (msg)
if qiejieConfig[msg.id] then
UIManager.OpenPanel(UIName.QiJieShiLianPanel)
else

View File

@ -181,6 +181,7 @@ function this.FormatTreasureData(_tabNum)
return dataList
end
--获取战斗结束后信息(拼接)
function this.GetBattleResult()
local config = QijieStage[this.curLevelId]
local data = {}
@ -196,4 +197,10 @@ function this.GetBattleResult()
return data
end
--获取遗物效果
function this.GetTreasureEffect(treasureList)
local moneyString = ""
local attriString = ""
end
return QiJieShiLianManager

View File

@ -88,7 +88,7 @@ function QiJieShiLianPanel:BindEvent()
UIManager.OpenPanel(UIName.GeneralInfoPopup,GENERALINFO_TYPE.QiJieGoalAttri,self.configData)
end)
Util.AddClick(self.giftBtn,function()
NetManager.SevenWorldRelicRequest(nil,function (msg)
NetManager.SevenWorldRelicRequest(0,function (msg)
UIManager.OpenPanel(UIName.GeneralBigPopup,GENERAL_POPUP_TYPE.QiJieTreasure)
end)
end)

View File

@ -57,6 +57,7 @@ local _ShowPlusType = {
UpViewRechargeType.SuiFanXingCheng,
UpViewRechargeType.LuoFuJingShi,
UpViewRechargeType.yuxulundaoTicket,
UpViewRechargeType.QiJieCoin,
}
-- 判断是否显示加号
@ -383,7 +384,8 @@ function UpView:RechargeType(_type)
_type==UpViewRechargeType.XuanHuangZhiQi or
_type==UpViewRechargeType.LuoFuJingShi or
_type==UpViewRechargeType.XiuXian or
_type==UpViewRechargeType.SuiFanXingCheng then
_type==UpViewRechargeType.SuiFanXingCheng or
_type==UpViewRechargeType.QiJieCoin then
UIManager.OpenPanel(UIName.RewardItemSingleShowPopup, _type)
end
end