zhangwei vor 3 Jahren
Ursprung
Commit
3bd1d6e230
1 geänderte Dateien mit 9 neuen und 7 gelöschten Zeilen
  1. 9 7
      pages/index.vue

+ 9 - 7
pages/index.vue

@@ -54,7 +54,7 @@
 					<div>{{ detail.postBizData.receiveCount || 0 }}/{{ detail.postBizData.totalCount || 0 }} Winners</div>
 					<div> {{ detail.postBizData.receiveAmountValue }} / {{
 							detail.postBizData.amountValue || ''
-					}} {{ detail.postBizData.amountCurrencyCode || '' }}</div>
+					}} {{ detail.postBizData.currencySymbol || '' }}</div>
 				</div>
 				<div class="luck-list" @scroll="handleScroll($event)">
 					<div class="luck-item" v-for="item, i in luck_list" v-bind:key="i">
@@ -104,7 +104,7 @@
 						<div class="num">2</div>
 						<span>Complete Tasks by {{ detail.postBizData.postUserInfo.nickName }}</span>
 					</div>
-					<div class="tip">Follow、Like tweet、Retweet (Just 1-3 minutes)</div>
+					<div class="tip">Complete like, retweet and follow in a simple way</div>
 				</div>
 			</div>
 
@@ -138,7 +138,7 @@
 				<div>{{ detail.postBizData.receiveCount || 0 }}/{{ detail.postBizData.totalCount || 0 }} Winners</div>
 				<div> {{ detail.postBizData.receiveAmountValue }} / {{
 						detail.postBizData.amountValue || ''
-				}} {{ detail.postBizData.amountCurrencyCode || '' }}</div>
+				}} {{ detail.postBizData.currencySymbol || '' }}</div>
 			</div>
 			<div class="luck-list" @scroll="handleScroll($event)">
 				<div class="luck-item" v-for="item, i in luck_list" v-bind:key="i">
@@ -150,7 +150,7 @@
 					</div>
 					<div class="luck-money">
 						<img :src="currencyIconPath" alt />
-						<div class="luck-money-txt">{{ item.amountValue || 0 }}</div>
+						<div class="luck-money-txt" >{{ item.amountValue || 0 }}</div>
 					</div>
 					<div class="luck-king" v-if="item.maxAmount">
 						<img src="/svg/icon-king-hat.svg" alt />
@@ -483,6 +483,7 @@ export default {
 		if (!this.detail.postId) {
 			return
 		}
+		console.log(this.detail)
 		//改变font-size
 		// (function (doc, win) {
 		// 	var docEI = doc.documentElement,
@@ -630,7 +631,7 @@ body,
 		flex: 1;
 		width: 100%;
 		background: #fff;
-		overflow: auto;
+		overflow-y: auto;
 
 		.luck-item {
 			display: flex;
@@ -839,7 +840,7 @@ body,
 		height: 65rem;
 		border-radius: 2rem;
 		// background: red;
-		overflow: hidden;
+		overflow-y: hidden;
 		box-shadow: 0 0 5px #888888;
 		background: #fff;
 
@@ -936,6 +937,7 @@ body,
 					span {
 						margin-left: 1.3rem;
 						font-size: 4.6rem;
+						word-break: break-all;
 					}
 				}
 			}
@@ -955,7 +957,7 @@ body,
 
 		.luck-list {
 			background: #fff;
-			overflow: auto;
+			overflow-y: auto;
 
 			.luck-item {
 				display: flex;