Browse Source

修改首页、团购详情页

pangqijun 1 year ago
parent
commit
fc01c76bac

+ 4 - 6
pages/groupbuying_details/index.vue

@@ -69,12 +69,10 @@
 							</view>
 							<view class="countdown flex-row">
 								<view class="countdown-l" hover-class="none" hover-stop-propagation="false">
-									<image class="avatar-group_1" referrerpolicy="no-referrer"
-										src="http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" />
-									<image class="avatar-group_1" referrerpolicy="no-referrer"
-										src="http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" />
-									<image class="avatar-group_1" referrerpolicy="no-referrer"
-										src="http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" />
+										<block v-for="(item, index) in storeInfo.grouponUsers" :key="index">
+											<image v-if="index < 4" class="avatar-group_1" referrerpolicy="no-referrer"
+												:src="item.userAvatar || `http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg`" />
+										</block>
 									<text class="red">{{storeInfo.grouponUserTotal}}人</text>
 									<text class="yellow">正在参团中</text>
 								</view>

+ 5 - 6
pages/index/diy/components/latestGroupBuying.vue

@@ -39,12 +39,11 @@
 
 				<view class="countdown flex-row">
 					<view class="countdown-l" hover-class="none" hover-stop-propagation="false">
-						<image class="avatar-group_1" referrerpolicy="no-referrer"
-							src="http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" />
-						<image class="avatar-group_1" referrerpolicy="no-referrer"
-							src="http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" />
-						<image class="avatar-group_1" referrerpolicy="no-referrer"
-							src="http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" />
+						<block v-for="(item, index) in e.grouponUsers" :key="index">
+							<image v-if="index < 4" class="avatar-group_1" referrerpolicy="no-referrer"
+								:src="item.userAvatar || `http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg`" />
+						</block>
+						
 						<text class="red">{{ e.grouponUserTotal }}人</text>
 						<text class="yellow">正在参团中</text>
 					</view>