|
@@ -132,9 +132,18 @@
|
|
|
</div>
|
|
|
<div class="luck-list-title">
|
|
|
<div>{{ state.detail.receiveCount || 0 }}/{{ state.detail.totalCount || 0 }} Winners</div>
|
|
|
- <div> {{ state.detail.receiveAmountValue }} / {{ state.detail.amountValue || '' }} {{
|
|
|
- state.detail.currencySymbol || ''
|
|
|
- }}</div>
|
|
|
+ <div class="right">
|
|
|
+ <span class="text">
|
|
|
+ <a-tooltip :title="state.detail.receiveAmountValue">
|
|
|
+ {{ getBit(state.detail.receiveAmountValue) }}
|
|
|
+ </a-tooltip>
|
|
|
+ /
|
|
|
+ <a-tooltip :title="state.detail.amountValue">
|
|
|
+ {{ getBit(state.detail.amountValue) || ''}}
|
|
|
+ </a-tooltip>
|
|
|
+ </span>
|
|
|
+ {{ state.detail.currencySymbol || '' }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="luck-list max" @scroll="handleScroll($event)">
|
|
|
<div class="luck-item" v-for="item, i in state.detail.allReceived" v-bind:key="i">
|
|
@@ -149,7 +158,11 @@
|
|
|
</div>
|
|
|
<div class="luck-money">
|
|
|
<img :src="state.detail.currencyIconPath" alt />
|
|
|
- <div class="luck-money-txt">{{ showLastTwoPlace(item.amountValue) || 0 }}</div>
|
|
|
+ <div class="luck-money-txt">
|
|
|
+ <a-tooltip :title="item.amountValue">
|
|
|
+ {{ getBit(item.amountValue) }}
|
|
|
+ </a-tooltip>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="luck-king" v-if="item.maxAmount">
|
|
|
<img :src="require('@/assets/svg/icon-king-hat.svg')" alt />
|
|
@@ -189,7 +202,16 @@
|
|
|
</div>
|
|
|
<div class="luck-list-title">
|
|
|
<div>{{ state.detail.receiveCount || 0 }}/{{ state.detail.totalCount || 0 }} Winners</div>
|
|
|
- <div> {{ state.detail.receiveAmountValue }} / {{ state.detail.amountValue || '' }} {{
|
|
|
+ <div class="right">
|
|
|
+ <span class="text">
|
|
|
+ <a-tooltip :title="state.detail.receiveAmountValue">
|
|
|
+ {{ getBit(state.detail.receiveAmountValue) }}
|
|
|
+ </a-tooltip>
|
|
|
+ /
|
|
|
+ <a-tooltip :title="state.detail.amountValue">
|
|
|
+ {{ getBit(state.detail.amountValue) || '' }}
|
|
|
+ </a-tooltip>
|
|
|
+ </span> {{
|
|
|
state.detail.currencySymbol || ''
|
|
|
}}</div>
|
|
|
</div>
|
|
@@ -205,7 +227,11 @@
|
|
|
</div>
|
|
|
<div class="luck-money">
|
|
|
<img :src="state.detail.currencyIconPath" alt />
|
|
|
- <div class="luck-money-txt">{{ showLastTwoPlace(item.amountValue) }}</div>
|
|
|
+ <div class="luck-money-txt">
|
|
|
+ <a-tooltip :title="item.amountValue">
|
|
|
+ {{ getBit(item.amountValue) }}
|
|
|
+ </a-tooltip>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class="luck-king" v-if="item.maxAmount">
|
|
@@ -235,7 +261,16 @@
|
|
|
|
|
|
<div class="luck-list-title">
|
|
|
<div>{{ state.detail.receiveCount || 0 }}/{{ state.detail.totalCount || 0 }} Winners</div>
|
|
|
- <div> {{ state.detail.receiveAmountValue }} / {{ state.detail.amountValue || '' }} {{
|
|
|
+ <div class="right">
|
|
|
+ <span class="text">
|
|
|
+ <a-tooltip :title="state.detail.receiveAmountValue">
|
|
|
+ {{ getBit(state.detail.receiveAmountValue) }}
|
|
|
+ </a-tooltip>
|
|
|
+ /
|
|
|
+ <a-tooltip :title="state.detail.amountValue">
|
|
|
+ {{ getBit(state.detail.amountValue || '') }}
|
|
|
+ </a-tooltip>
|
|
|
+ </span> {{
|
|
|
state.detail.currencySymbol || ''
|
|
|
}}</div>
|
|
|
</div>
|
|
@@ -252,7 +287,11 @@
|
|
|
</div>
|
|
|
<div class="luck-money">
|
|
|
<img :src="state.detail.currencyIconPath" alt />
|
|
|
- <div class="luck-money-txt">{{ showLastTwoPlace(item.amountValue) || 0 }}</div>
|
|
|
+ <div class="luck-money-txt">
|
|
|
+ <a-tooltip :title="item.amountValue">
|
|
|
+ {{ getBit(item.amountValue) }}
|
|
|
+ </a-tooltip>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="luck-king" v-if="item.maxAmount">
|
|
|
<img :src="require('@/assets/svg/icon-king-hat.svg')" alt />
|
|
@@ -298,7 +337,7 @@ export default {
|
|
|
<script setup>
|
|
|
import { onMounted, reactive, ref } from "vue";
|
|
|
import { getPostDetail, getRedPacket, finishRedPacket, oneKeyLike, oneKeyReTweet, oneKeyFollow, getTaskDetail, getReceivedList } from '@/http/redPacket.js'
|
|
|
-import { getQueryString, guid } from '@/uilts/help.js'
|
|
|
+import { getQueryString, guid, getBit } from '@/uilts/help.js'
|
|
|
import { message } from 'ant-design-vue';
|
|
|
import FontAmount from '@/view/components/font-amount.vue'
|
|
|
import GetMore from '@/view/iframe/publish/components/get-more.vue'
|
|
@@ -1542,6 +1581,10 @@ body {
|
|
|
div:last-child {
|
|
|
text-align: right;
|
|
|
}
|
|
|
+
|
|
|
+ .text {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.luck-list {
|