|
@@ -130,7 +130,7 @@ export default {
|
|
|
// 点击抽奖按钮触发回调
|
|
|
startCallBack() {
|
|
|
if (this.hasLotteryCount > 0) {
|
|
|
- if (this.maySignPoint > this.lotteryConsumePoint) {
|
|
|
+ if (this.maySignPoint >= this.lotteryConsumePoint) {
|
|
|
this.$refs.lucky.play()
|
|
|
if (this.disabled) {
|
|
|
this.disabled = false
|
|
@@ -212,6 +212,10 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+page{
|
|
|
+ height: none;
|
|
|
+}
|
|
|
+
|
|
|
.app-container {
|
|
|
position: relative;
|
|
|
background: url('@/static/lottery/bg.png');
|