29 lines
1012 B
Plaintext
29 lines
1012 B
Plaintext
<view class="page">
|
|
<view class="section-title">商品预定</view>
|
|
<scroll-view scroll-x class="category-scroll">
|
|
<view class="category-item {{!activeCategoryId ? 'active' : ''}}" bindtap="clearCategory">全部</view>
|
|
<view
|
|
wx:for="{{categories}}"
|
|
wx:key="id"
|
|
class="category-item {{activeCategoryId === item.id ? 'active' : ''}}"
|
|
bindtap="chooseCategory"
|
|
data-id="{{item.id}}"
|
|
>
|
|
{{item.name}}
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<view wx:for="{{products}}" wx:key="id" class="card" bindtap="goDetail" data-id="{{item.id}}">
|
|
<view class="row between">
|
|
<view>
|
|
<view>{{item.name}}</view>
|
|
<view class="muted">{{item.description || '社区精选商品'}}</view>
|
|
</view>
|
|
<view class="tag">{{item.status}}</view>
|
|
</view>
|
|
<view wx:if="{{item.skus.length}}" class="price">¥{{item.skus[0].priceCent / 100}} 起</view>
|
|
</view>
|
|
|
|
<view wx:if="{{!products.length && !loading}}" class="card muted">暂无商品</view>
|
|
</view>
|