store/packageA/member/signrecord/signrecord.wxml

48 lines
2.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="signrecord">
<view class="sign-records custom_color">
<view class="top">
<view class="sign_a ul">
<view class="date li">{{ continue_days }}</view>
<view class="total li">连续{{ sign_name }}</view>
</view>
<view class="sign_b ul">
<view class="date li">{{ sign_total }}</view>
<view class="total li">累计{{ sign_name }}</view>
</view>
</view>
<view class="bottom ul">
<view class="li">累计获得奖励:</view>
<view class="li flex">
<view class="flex1">{{integral || "积分"}}{{sign_model.cumulative_point || "0.00"}}</view>
<view class="flex1">优惠券:{{sign_model.cumulative_coupon || 0}}</view>
</view>
<view class="li flex" wx:if="{{is_love}}">
<view class="flex1">{{love_name || "爱心值"}}{{sign_model.cumulative_point || "0.00"}}</view>
<view class="flex1">{{love_name || "爱心值"}}返现:{{love_return || "0.00"}}</view>
</view>
<!-- 原来的代码 -->
<!-- <view class="li">{{ cumulative }}</view> -->
</view>
</view>
<view class="list_box">
<view wx:for="{{sign_log}}" class="list ul" wx:key="index">
<view class="list_a li flex">
<view class="flex1">{{integral || "积分"}}{{item.award_point || "0.00"}}</view>
<view class="flex1">优惠券:{{item.award_coupon || 0}}</view>
</view>
<view class="list_a li flex" wx:if="{{is_love}}">
<view class="flex1">{{love_name || "爱心值"}}{{item.award_love || "0.00"}}</view>
<view class="flex1">{{love_name || "爱心值"}}返现:{{item.total_love_return || "0.00"}}</view>
</view>
<!-- 原来的代码 -->
<!-- <view class="list_a li" style="display:flex;">
<text style="color:#000;">{{item.award_content}}</text>
</view> -->
<view class="list_b li">
<text>{{item.created_at}}</text>
<text class="custom_color">{{ sign_name }}成功</text>
</view>
</view>
</view>
</view>
<shopfoot></shopfoot>