|
@@ -215,7 +215,7 @@
|
|
|
|
|
|
<!-- no-open -->
|
|
|
<div v-else-if="state.status == 'not-open'" class="not-open">
|
|
|
- <template v-if="state.detail.posterType === 2 && state.detail.customPosterInstalled">
|
|
|
+ <!-- <template v-if="state.detail.posterType === 2 && state.detail.customPosterInstalled">
|
|
|
<img class="customImg" :src="state.detail.customPosterInstalled" />
|
|
|
<div class="customBottom">
|
|
|
<div class="theme">
|
|
@@ -226,14 +226,14 @@
|
|
|
<div class="winner-info">
|
|
|
<span class="count">{{state.detail.totalCount}} Winners</span>
|
|
|
<span>to Share </span>
|
|
|
- <span class="prize-name">{{state.detail.amountValue + ' ' + state.detail.currencySymbol}}</span>
|
|
|
+ <span class="prize-name">{{state.detail.rewardType === RewardType.money ? state.detail.amountValue + ' ' + state.detail.currencySymbol : state.detail.customizedReward}}</span>
|
|
|
</div>
|
|
|
<div class="open-red" @click="clickOpenRedPacket">
|
|
|
Participate Now
|
|
|
</div>
|
|
|
</div>
|
|
|
- </template>
|
|
|
- <template v-else>
|
|
|
+ </template> -->
|
|
|
+ <!-- <template v-else> -->
|
|
|
<custom-card-cover
|
|
|
:data="{
|
|
|
totalCount: state.detail.totalCount,
|
|
@@ -249,11 +249,11 @@
|
|
|
},
|
|
|
rewardType: state.detail.rewardType,
|
|
|
customizedReward: state.detail.customizedReward,
|
|
|
- customPosterUrl: ''
|
|
|
+ customPosterUrl: state.detail.customPosterInstalled
|
|
|
}"
|
|
|
@clickOpenRedPacket = "clickOpenRedPacket"
|
|
|
></custom-card-cover>
|
|
|
- </template>
|
|
|
+ <!-- </template> -->
|
|
|
</div>
|
|
|
|
|
|
|