| 123456789101112131415161718192021222324252627282930 |
- <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
- <view slot="content">共享茶室</view>
- </cu-custom>
- <view class="lw-list">
- <view class="lw-item" wx:for="{{list}}" wx:key="key" bindtap="toDetail" data-id="{{item.id}}">
- <view class="content">
- <image src="{{item.image}}" mode="aspectFill"></image>
- <view class="desc">
- <view class="text-lg">{{item.name}}</view>
- <view class="margin-top-sm text-gray text-sm">{{item.address}}</view>
- </view>
- </view>
- </view>
- </view>
- <view wx:if="no_more" class="no_more">没有更多数据</view>
- <view class="footer-view"></view>
- <view class="cu-bar tabbar bg-white footer">
- <view class="action">
- <view class="cuIcon-cu-image">
- <image src="/common/images/tabbar/index_cur.png"></image>
- </view>
- <view class="text-red">茶室</view>
- </view>
- <view class="action" bind:tap="toLog">
- <view class="cuIcon-cu-image">
- <image src="/common/images/tabbar/my.png"></image>
- </view>
- <view class="text-gray">预约记录</view>
- </view>
- </view>
|