|
@@ -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>
|
|
|
|