Commit 38625b7b authored by zjz1994's avatar zjz1994

体力获取有无转盘奖励

parent d0e648fb
......@@ -41,15 +41,18 @@ export default class BloodPanel extends Panel {
}
//切换显示状态,todo
NetManager.ins.getTestShowTurntable((s,res)=>{
// console.log("收到获取是否展示转盘",s,res);
if(res&&res.data){
NetManager.ins.getConfigInfo((s,res)=>{
console.log("收到获取是否展示转盘",s,res);
//是否显示抽奖得体力
var showcj:boolean = false;
if(res&&res.data&&res.data.luckyDrawConf&&res.data.luckyDrawConf.enable){
showcj = true;
}
//显示条数
var tipnum:number = 3;
//有无按钮
var havebtn:boolean = true;
//是否显示抽奖得体力
var showcj:boolean = res.data.showcj;
this["zhuanpan"].visible = showcj;
if(showcj){
this["zhuanpan"].y = 0;
......@@ -88,7 +91,6 @@ export default class BloodPanel extends Panel {
}
this["bg2"].height = bgheight;
this["botinfo"].y = bgheight-cutheight-75-40;
}
})
this['price1Txt'].text = `${window['price1']}个元宝=1个体力值`;
this['resumeBtn'].addEventListener(egret.TouchEvent.TOUCH_TAP, () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment