home.wxml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
  2. <view slot="content">共享茶室</view>
  3. </cu-custom>
  4. <view class="lw-list">
  5. <view class="lw-item" wx:for="{{list}}" wx:key="key" bindtap="toDetail" data-id="{{item.id}}">
  6. <view class="content">
  7. <image src="{{item.image}}" mode="aspectFill"></image>
  8. <view class="desc">
  9. <view class="text-lg">{{item.name}}</view>
  10. <view class="margin-top-sm text-gray text-sm">{{item.address}}</view>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. <view wx:if="no_more" class="no_more">没有更多数据</view>
  16. <view class="footer-view"></view>
  17. <view class="cu-bar tabbar bg-white footer">
  18. <view class="action">
  19. <view class="cuIcon-cu-image">
  20. <image src="/common/images/tabbar/index_cur.png"></image>
  21. </view>
  22. <view class="text-red">茶室</view>
  23. </view>
  24. <view class="action" bind:tap="toLog">
  25. <view class="cuIcon-cu-image">
  26. <image src="/common/images/tabbar/my.png"></image>
  27. </view>
  28. <view class="text-gray">预约记录</view>
  29. </view>
  30. </view>