Jelajahi Sumber

Merge remote-tracking branch 'origin/feature_220713_ach_pay' into dev_1.1.5

zhangwei 2 tahun lalu
induk
melakukan
3e3277ebea
3 mengubah file dengan 52 tambahan dan 3 penghapusan
  1. 10 0
      pages/ach_pay/pay_notice.vue
  2. 15 1
      pages/index.vue
  3. 27 2
      pages/luckdraw.vue

+ 10 - 0
pages/ach_pay/pay_notice.vue

@@ -0,0 +1,10 @@
+<template>
+    <div></div>
+</template>
+
+<script>
+
+</script>
+
+<style lang="scss" >
+</style>

+ 15 - 1
pages/index.vue

@@ -115,7 +115,14 @@
 							<span>{{ detail.postBizData.postUserInfo.nickName || 'FutureDoctor' }}</span>
 						</div>
 						<div class="money-area">
-							<div class="txt">{{ detail.postBizData.currencySymbol }} GIVEAWAY</div>
+							<div class="txt">
+								<span>
+									{{ detail.postBizData.amountCurrencyCode == 'USD' ? 'US Dollar' :
+											detail.postBizData.tokenSymbol
+									}}
+								</span>
+								&nbsp;GIVEAWAY
+							</div>
 							<div class="coin">
 								<img :src="detail.postBizData.currencyIconPath" alt />
 								<font-amount :amount="detail.postBizData.amountValue"></font-amount>
@@ -1238,6 +1245,13 @@ body,
 				text-align: center;
 				letter-spacing: 0.3px;
 				color: #FFFFFF;
+				display: flex;
+				align-items: center;
+				justify-content: center;
+
+				span {
+					color: #F9C545;
+				}
 			}
 
 			.coin {

+ 27 - 2
pages/luckdraw.vue

@@ -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>
+                                        &nbsp;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>
+                                                &nbsp;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 {