35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
<view>
|
|
<view class="points-overview">
|
|
<view class="points-overview__content">
|
|
<view class="points-overview__label">账户积分</view>
|
|
<view class="points-overview__num">{{ pointsNum }}</view>
|
|
</view>
|
|
<navigator class="points-overview__action" url="/packages/user/points/desc">
|
|
<text class="points-overview__desc">积分规则</text>
|
|
<image
|
|
style="width: 12rpx; height: 22rpx;"
|
|
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/User/_assets/more.primary.12x22.png"
|
|
>
|
|
</image>
|
|
</navigator >
|
|
</view>
|
|
|
|
<view class="block-divider"></view>
|
|
|
|
<view class="record-list">
|
|
<view
|
|
wx:for="{{records}}"
|
|
wx:for-item="item"
|
|
wx:key="index"
|
|
class="record-list-item"
|
|
>
|
|
<view class="record-list-item__content">
|
|
<view class="record-list-item__label">{{ item.source }}</view>
|
|
<view class="record-list-item__num">+{{ item.integral }}</view>
|
|
</view>
|
|
<view class="record-list-item__datetime">{{ item.create_time }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<footer />
|