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

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

View File

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

View File

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

View File

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

View File

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