|
@@ -24,7 +24,12 @@
|
|
|
<span>{{ detail.postBizData.postUserInfo.nickName }}</span>
|
|
|
</div>
|
|
|
<div class="price">
|
|
|
- <div class="usdt">{{ detail.postBizData.currencySymbol }} GIVEAWAY</div>
|
|
|
+ <div class="usdt">
|
|
|
+ <span>
|
|
|
+ {{detail.postBizData.amountCurrencyCode == 'USD' ? 'US Dollar' : detail.postBizData.tokenSymbol}}
|
|
|
+ </span>
|
|
|
+ GIVEAWAY
|
|
|
+ </div>
|
|
|
<div class="money">
|
|
|
<img :src="detail.postBizData.currencyIconPath" />
|
|
|
<font-amount :fontSize="60" :amount="detail.postBizData.amountValue">
|
|
@@ -188,7 +193,12 @@
|
|
|
<span>{{ detail.postBizData.postUserInfo.nickName }}</span>
|
|
|
</div>
|
|
|
<div class="price">
|
|
|
- <div class="usdt">{{ detail.postBizData.currencySymbol }} GIVEAWAY</div>
|
|
|
+ <div class="usdt">
|
|
|
+ <span>
|
|
|
+ {{detail.postBizData.amountCurrencyCode == 'USD' ? 'US Dollar' : detail.postBizData.tokenSymbol}}
|
|
|
+ </span>
|
|
|
+ GIVEAWAY
|
|
|
+ </div>
|
|
|
<div class="money">
|
|
|
<img :src="detail.postBizData.currencyIconPath" />
|
|
|
<font-amount :fontSize="60" :amount="detail.postBizData.amountValue">
|
|
@@ -945,6 +955,14 @@ body,
|
|
|
line-height: 20px;
|
|
|
text-align: center;
|
|
|
letter-spacing: 0.3px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ span {
|
|
|
+ color: #F9C545;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.money {
|
|
@@ -1086,6 +1104,13 @@ body,
|
|
|
line-height: 20px;
|
|
|
text-align: center;
|
|
|
letter-spacing: 0.3px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ span {
|
|
|
+ color: #F9C545;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.money {
|