Commit fcbc92fa authored by zjz1994's avatar zjz1994

免费次数调整

parent 80c5a410
......@@ -40,5 +40,5 @@
<e:Image id="tips1" source="turnnoprize换个姿势再来一次!_png" y="436" horizontalCenter="0" visible="false"/>
<e:Image id="tips2" source="turnnoprize奖励溜走了,再试一次吧!_png" y="423.65" horizontalCenter="0" visible="false"/>
<e:Image id="tips3" source="turnnoprize离奖励只差一毫米! 再来一次吧!_png" y="436" horizontalCenter="1" visible="false"/>
<e:Label id="status2" text="(免费次数:1)" x="169.3" y="629.58" size="22" touchEnabled="false" fontFamily="FZY3JW" visible="false"/>
<e:Label id="status2" text="(免费次数:1)" x="148.08" y="629.58" size="22" touchEnabled="false" fontFamily="FZY3JW" textAlign="center" width="200"/>
</e:Skin>
\ No newline at end of file
......@@ -50,11 +50,11 @@
</e:Button>
<e:Group id="status1" x="52" y="75" visible="false">
<e:Group id="status1" x="52" y="75">
<e:Label text=")" x="120.61" size="22" touchEnabled="false" fontFamily="FZY3JW" verticalCenter="0"/>
<e:Label id="nums" text="(-50" x="7" size="22" textAlign="right" width="82" touchEnabled="false" fontFamily="FZY3JW" verticalCenter="0"/>
<e:Image source="common_yuanbao_png" x="94" scaleX="0.2" scaleY="0.2" verticalCenter="0"/>
</e:Group>
</e:Group>
<e:Label id="status2" text="(免费次数:1)" x="169.3" y="768.97" size="22" touchEnabled="false" fontFamily="FZY3JW"/>
<e:Label id="status2" text="(免费次数:1)" x="147.3" y="768.97" size="22" touchEnabled="false" fontFamily="FZY3JW" width="200" textAlign="center" visible="false"/>
</e:Skin>
\ No newline at end of file
......@@ -21,7 +21,7 @@ export default class TurntableNoPrizePanel extends Panel {
this['status1'].visible = data.remainTimes <= 0;
this['status2'].visible = !this['status1'].visible;
this['nums'].text = `(-${data.nextTimeNeedCoin}`;
this['status2'].text = `免费次数:${data.remainTimes}`;
this['status2'].text = `(免费次数:${data.remainTimes}次)`;
});
}
......
......@@ -27,7 +27,7 @@ export default class TurnPrizePanel extends Panel {
this['status1'].visible = data.remainTimes <= 0;
this['status2'].visible = !this['status1'].visible;
this['nums'].text = `(-${data.nextTimeNeedCoin}`;
this['status2'].text = `免费次数:${data.remainTimes}`;
this['status2'].text = `(免费次数:${data.remainTimes}次)`;
});
// console.log(data);
......
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