|
@@ -27,14 +27,14 @@
|
|
|
<!-- 弹窗 -->
|
|
|
<uni-popup ref="popup" type="center" :is-mask-click="false">
|
|
|
<view v-if="this.hasLotteryCount <= 0" class="popup" style="justify-content: space-around">
|
|
|
- <view>
|
|
|
+ <view style="fontSize: 36rpx">
|
|
|
<view>很遗憾!</view>
|
|
|
<view>今日抽奖次数已用光</view>
|
|
|
</view>
|
|
|
<img src="../../static/lottery/noChance.png" />
|
|
|
</view>
|
|
|
<view v-else class="popup">
|
|
|
- <view>{{ form.resultGoodName }}</view>
|
|
|
+ <view style="fontSize: 36rpx">{{ form.resultGoodName }}</view>
|
|
|
<img :src="form.resultGoodPic" />
|
|
|
<button v-if="form.resultGoodType === 4" @click="getSubmit">领取</button>
|
|
|
<button v-if="form.resultGoodType === 5" @click="getAgain">再抽一次</button>
|
|
@@ -87,6 +87,7 @@ export default {
|
|
|
},
|
|
|
onLoad() {
|
|
|
this.getList()
|
|
|
+ console.log(getApp());
|
|
|
},
|
|
|
methods: {
|
|
|
// 获取页面信息
|
|
@@ -191,7 +192,7 @@ export default {
|
|
|
uni.showToast({
|
|
|
title: '领取成功,已累积到积分中!'
|
|
|
})
|
|
|
- }, 1000)
|
|
|
+ }, 500)
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -301,7 +302,6 @@ export default {
|
|
|
|
|
|
img {
|
|
|
width: 328rpx;
|
|
|
- height: 236rpx;
|
|
|
}
|
|
|
|
|
|
button {
|