index.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--pages/user/my_comment/index.wxml-->
  2. <view class='container'>
  3. <view class='comment_body'>
  4. <view class='comment_con'>
  5. <view class="weui-tab__panel">
  6. <view class="weui-tab__content">
  7. <view class='componentList'>
  8. <block wx:for="{{myBrowsed}}" wx:key="index">
  9. <component-list
  10. hasProduct="{{item.hasProduct}}"
  11. hasPay="{{item.hasPay}}"
  12. sceneId="{{item.id}}"
  13. imageUrl="{{item.imageUrl}}"
  14. name="{{item.name}}"
  15. pavilionName="{{item.pavilionName}}"
  16. statusTextDesp="{{item.statusTextDesp}}"
  17. distance="{{item.distance}}"
  18. online="{{item.online}}"
  19. scenePv="{{item.pv}}"
  20. link="{{item.product.showLink}}"
  21. ></component-list>
  22. </block>
  23. </view>
  24. <view class='noCollection' wx:if="{{myBrowsed.length < 1}}" >
  25. <image src='{{noCollectionImg}}'></image>
  26. <text>没有更多的记录</text>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>