You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
931 B
Plaintext

9 months ago
<view style='--color--:{{color}}'>
<view class="container">
<view class='cy-top-view'>
<view class='cy-point '>{{totalPoint}}</view>
<view class='cy-point-des'>赚取更多积分,可以兑换礼品哦~</view>
</view>
<view class='cy-point-title content-center'>
<text>积分变动明细</text>
<view class='cy-time-sieve content-center' bindtap='cy_tapSieveCondition'>
<text>筛选</text>
<image src='../../images/icon-sieve.png' class='cy-sieve-icon'></image>
</view>
</view>
<block wx:for="{{list}}" wx:key="{{item}}">
<view class='cy-point-item'>
<view style='margin-top:15rpx; margin-left:30rpx;'>
<text class='cy-point-type'>{{item.typeCn}}</text>
<text class='cy-point-money cy-right-float'>{{item.point}}</text>
</view>
<view class='cy-point-time' style='margin-left:30rpx;'>{{item.operateTime}}</view>
</view>
</block>
</view>
</view>