dm-wechat-mini/pages/shop/index/index.wxml
2025-02-06 23:22:03 +08:00

24 lines
753 B
Plaintext

<nav-bar/>
<view class="consume">
<view class="title">蜂蜜 (克)</view>
<view class="point">{{userInfo.points}}</view>
<view class="tips">买券自动抵扣</view>
</view>
<view class="btns">
<button wx:for="{{categories}}" wx:key="index" class="item" size="mini"
bind:tap="changeTab" data-index="{{index}}" data-cid="{{item.id}}"
type="{{tabIndex==index?'primary':''}}">
{{item.name}}
</button>
</view>
<view class="shop-list">
<block wx-if="{{shopList.length>0}}">
<shop-item wx:for="{{shopList}}" data="{{item}}" data-item="{{item}}" bind:tap="goToDetail" wx:key="index">
</shop-item>
</block>
<view class="list-empty" wx:else>
<view class="title">暂无该分类商铺</view>
</view>
</view>