12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/user/my_comment/index.wxml-->
- <view class='container'>
- <view class='comment_body'>
- <view class='comment_con'>
- <view class="weui-tab__panel">
- <view class="weui-tab__content">
- <view class='componentList'>
- <block wx:for="{{myBrowsed}}" wx:key="index">
- <component-list
- hasProduct="{{item.hasProduct}}"
- hasPay="{{item.hasPay}}"
- sceneId="{{item.id}}"
- imageUrl="{{item.imageUrl}}"
- name="{{item.name}}"
- pavilionName="{{item.pavilionName}}"
- statusTextDesp="{{item.statusTextDesp}}"
- distance="{{item.distance}}"
- online="{{item.online}}"
- scenePv="{{item.pv}}"
- link="{{item.product.showLink}}"
- ></component-list>
- </block>
- </view>
-
- <view class='noCollection' wx:if="{{myBrowsed.length < 1}}" >
- <image src='{{noCollectionImg}}'></image>
- <text>没有更多的记录</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|