21 lines
766 B
Plaintext
21 lines
766 B
Plaintext
<view class="tab-bar">
|
|
<view class="item-container {{tabIndex==0?'current':''}}" bind:tap="changeTab" data-index="0">
|
|
<view class="item">待使用</view>
|
|
</view>
|
|
<view class="item-container {{tabIndex==1?'current':''}}" bind:tap="changeTab" data-index="1">
|
|
<view class="item">已使用</view>
|
|
</view>
|
|
<view class="item-container {{tabIndex==2?'current':''}}" bind:tap="changeTab" data-index="2">
|
|
<view class="item">已失效</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="coupon-list">
|
|
<view class="item" wx:for="{{3}}" wx:key="index">
|
|
<view class="left">
|
|
<view class="name">平台奖励跑腿券</view>
|
|
<view class="desc">有效期至2025.03.06</view>
|
|
</view>
|
|
<view class="right money money-blue">3.0</view>
|
|
</view>
|
|
</view> |