Browse Source

图片显示问题

zhanghui 1 year ago
parent
commit
f96d68f923
2 changed files with 33 additions and 13 deletions
  1. 32 12
      pages/groupbuying_details/index.vue
  2. 1 1
      pages/index/diy/components/latestGroupBuying.vue

+ 32 - 12
pages/groupbuying_details/index.vue

@@ -53,21 +53,23 @@
 									<image src="http://www.gzzzyd.com/groupon/home_slices/浏览@2x.png" mode="scaleToFill" />
 								</view>
 							</view>
-							<view class="countdown flex-row">
+							<view class="countdown flex-row" style="padding: 0">
 								<view class="countdown-l" hover-class="none" hover-stop-propagation="false">
 
 									<block v-for="(item, index) in storeInfo.grouponUsers" :key="index">
 										<image v-if="index < 3" class="userAvatarImg" :class="{'avatar-group_1':index===0 }" referrerpolicy="no-referrer"
 											   :src="item.userAvatar || `/static/images/one.png`" />
 									</block>
-									<text class="red">{{storeInfo.grouponUserTotal}}人</text>
-									<text class="yellow">已参团</text>
+									<text class="" :style="{'font-weight':'bold','color':'#B42A3E','font-size':'26rpx'}">{{storeInfo.grouponUserTotal}}人</text>
+									<text class="yellow" :style="{'font-size':'26rpx'}">已参团</text>
 								</view>
-								<view class="countdown-r" v-if="isShowBottom">
-									<image src="http://www.gzzzyd.com/groupon/home_slices/倒计时@2x.png" mode="scaleToFill" />
-									<text class="yellow">截止倒计时</text>
+								<view class="countdown-r"  v-if="isShowBottom">
+									<image class="timeImg" :style="{'width':'26rpx','height':'26rpx'}" src="http://www.gzzzyd.com/groupon/home_slices/倒计时@2x.png" mode="scaleToFill" />
+									<text class="yellow" :style="{'font-size':'26rpx'}">截止倒计时</text>
 									<!-- <text class="red2">02时25分19秒</text> -->
-									<u-count-down :time="storeInfo.seconds * 1000" format="HH:mm:ss"></u-count-down>
+									<u-count-down style="height:'96rpx'" :time="storeInfo.seconds * 1000" format="HH:mm:ss" @change="timechange">
+										<text  :style="{'color':'#B42A3E','font-size':'28rpx'}">{{ timeData.hours>10?timeData.hours:'0'+timeData.hours}}时{{ timeData.minutes }}分{{ timeData.seconds }}秒</text>
+									</u-count-down>
 								</view>
 							</view>
 
@@ -356,6 +358,7 @@ export default {
 	data () {
 		let that = this;
 		return {
+			timeData:{},
 			scrollLeft: 0,
 			scrollLeftOld: 0,
 			bottomHeight:'0rpx',
@@ -642,6 +645,9 @@ export default {
 		this.currentPage = !this.currentPage
 	},
 	methods: {
+		timechange(e) {
+			this.timeData = e
+		},
 
 		scroll1(e) {
 			this.scrollLeftOld = e.detail.scrollLeft
@@ -2353,21 +2359,18 @@ action-sheet-item {
 	box-sizing: border-box;
 	background-color: rgba(255, 247, 248, 1.000000);
 	border-radius: 12rpx;
-	height: 100rpx;
-	padding: 20rpx;
-	line-height: 100rpx;
+	height: 96rpx;
+	line-height: 96rpx;
 	align-self: center;
 	display: flex;
 	justify-content: space-between;
 
 	.countdown-l {
-		flex: 1;
 		display: flex;
     align-items: center;
 	}
 
 	.countdown-r {
-		flex: 1;
 		display: flex;
 		align-items: center;
 	}
@@ -2550,6 +2553,8 @@ action-sheet-item {
 						display: block;
 						font-size: 28rpx;
 						font-weight: 500;
+
+
 						color: #B22338 !important;
 						margin-right: 10rpx;
 					}
@@ -2622,5 +2627,20 @@ action-sheet-item {
 	.bord{
 		border: 1px solid red;
 	}
+	.timeImg{
+		width: 22rpx;
+		height: 24rpx;
+	}
+
+	/deep/.yellow,
+	.u-count-down {
+		font-size: 24rpx;
+		font-weight: 400;
+		color: #FF9600;
+		line-height: 80rpx;
+		margin: 0 10rpx;
+		vertical-align: super;
+	}
+
 </style>
 

+ 1 - 1
pages/index/diy/components/latestGroupBuying.vue

@@ -52,7 +52,7 @@
 						<text class="yellow" v-if="currentId == 1">已参团</text>
 					</view>
 					<view class="countdown-r " v-if="currentId == 0">
-						<image src="http://www.gzzzyd.com/groupon/home_slices/倒计时@2x.png" mode="scaleToFill" />
+						<image :style="{'width':'26rpx','height':'26rpx'}" src="http://www.gzzzyd.com/groupon/home_slices/倒计时@2x.png" mode="scaleToFill" />
 						<text class="yellow">截止倒计时</text>
 						<!-- <text class="red2">02时25分19秒</text> -->
 						<!-- <uni-countdown :show-day="false" :hour="e.h" :minute="e.m" :second="e.s"></uni-countdown> -->