Browse Source

团购详情修改

zhanghui 1 year ago
parent
commit
6b360be6a6
1 changed files with 14 additions and 10 deletions
  1. 14 10
      pages/groupbuying_details/index.vue

+ 14 - 10
pages/groupbuying_details/index.vue

@@ -71,18 +71,22 @@
 									<text class="log-top-count">共{{storeInfo.grouponUserTotal}}条</text>
 								</view>
 								<view v-if="storeInfo.grouponUsers.length>0">
-									<scroll-view :scroll-top="scrollTop" scroll-y="true" class="scroll-Y" >
-										<view class="log-body" v-for="(u, index) in storeInfo.grouponUsers" :key="index">
-											<view class="log-item ">
-												<image :src="u.userAvatar || `/static/images/one.png`" mode="scaleToFill" />
-												<view class="log-item-content ">
-													<text class="log-item-content-t ">
-														{{u.createTime}} 下单了
-													</text>
+
+									<swiper class="scroll-Y" :autoplay="true" :vertical="true" :interval="3000" :circular="true">
+										<swiper-item v-for="(u, index) in storeInfo.grouponUsers" :key="index">
+											<view class="log-body">
+												<view class="log-item ">
+													<image :src="u.userAvatar || `/static/images/one.png`" mode="scaleToFill" />
+													<view class="log-item-content ">
+														<text class="log-item-content-t ">
+															{{u.createTime}} 下单了
+														</text>
+													</view>
 												</view>
 											</view>
-										</view>
-									</scroll-view>
+										</swiper-item>
+									</swiper>
+
 								</view>
 							</view>