Baozhangchao 3 years ago
parent
commit
da75e121c4
2 changed files with 7 additions and 4 deletions
  1. 2
    2
      src/components/WinningPopup.vue
  2. 5
    2
      src/pages/Honghe.vue

+ 2
- 2
src/components/WinningPopup.vue View File

11
               <div :class="`dialog-popuImag ${classDivAA?'flipped':''}`">
11
               <div :class="`dialog-popuImag ${classDivAA?'flipped':''}`">
12
                 <!-- <div class="back" :style="`background-image: url(${backimg});`"> -->
12
                 <!-- <div class="back" :style="`background-image: url(${backimg});`"> -->
13
                 <!-- <img
13
                 <!-- <img
14
-                    style="width: 180px; height:492px"
14
+                    style="width: 48vw; height:492px"
15
                     src="../assets/prizeImg/HappyWnning.jpg"
15
                     src="../assets/prizeImg/HappyWnning.jpg"
16
                     alt
16
                     alt
17
                 />-->
17
                 />-->
19
 
19
 
20
                 <div class="front">
20
                 <div class="front">
21
                   <img
21
                   <img
22
-                    style="width: 180px; height:492px "
22
+                    style="width: 48vw; height:492px "
23
                     src="../assets/prizeImg/HappyWnning.jpg"
23
                     src="../assets/prizeImg/HappyWnning.jpg"
24
                     alt
24
                     alt
25
                   />
25
                   />

+ 5
- 2
src/pages/Honghe.vue View File

171
       list: shuffle(monthList),
171
       list: shuffle(monthList),
172
       currentMonth: null,
172
       currentMonth: null,
173
       showPopup: false,
173
       showPopup: false,
174
-      showMyWinning: false,
174
+      showMyWinning: true,
175
       prizeList: [],
175
       prizeList: [],
176
       bingoId: rand(0, 12) + 1, // 可以抽奖的月份
176
       bingoId: rand(0, 12) + 1, // 可以抽奖的月份
177
       NOMyWinningShow: true,
177
       NOMyWinningShow: true,
209
       // 1、正常情况下, 分享主题是 抽取幸运签,解锁隐藏福利
209
       // 1、正常情况下, 分享主题是 抽取幸运签,解锁隐藏福利
210
       // 2、中奖弹出情况下, 分享主题是 我中奖啦! 来试试你的运气吧
210
       // 2、中奖弹出情况下, 分享主题是 我中奖啦! 来试试你的运气吧
211
       if (newValue && !oldValue) {
211
       if (newValue && !oldValue) {
212
-        share({ title: '我中奖啦! 来试试你的运气吧', desc: '抽取幸运签,解锁隐藏福利' })
212
+        share({
213
+          title: '我中奖啦! 来试试你的运气吧',
214
+          desc: '抽取幸运签,解锁隐藏福利'
215
+        })
213
       } else if (newValue !== oldValue) {
216
       } else if (newValue !== oldValue) {
214
         share({ title: '抽取幸运签,解锁隐藏福利', desc: '每月都有欢乐发生' })
217
         share({ title: '抽取幸运签,解锁隐藏福利', desc: '每月都有欢乐发生' })
215
       }
218
       }