Ver código fonte

抽奖页面

DESKTOP-O04BTUJ\muzen 3 anos atrás
pai
commit
3ecbf31c4f
1 arquivos alterados com 5 adições e 1 exclusões
  1. 5 1
      src/pages/lottery/index.vue

+ 5 - 1
src/pages/lottery/index.vue

@@ -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');