Commit ec3af9aa by 高淑倩

modify: 集点进度_可领取次数条件判断

parent ccf0e577
<!--pages/pointDetail/pointDetail.wxml-->
<wxs src="./tools.wxs" module="tools" />
<status-img imgHeight="{{imgHeight}}" img="{{detailImage}}" />
<view class="detail-info border_box">
<view class="info-top weui-flex df-j--bt">
<!--可领取次数 存在 3/3 不存在 0/3 -->
<view class="info-num">
进度:
<text class="point_color"> {{countObj.totalPoints ? countObj.totalPoints % goal : 0}}</text>
进度:
<text class="point_color" wx:if="{{countObj.surplusExchangeCount}}"> {{countObj.totalPoints ? tools.parse(countObj.totalPoints / goal) : 0}}</text>
<text class="point_color" wx:else> {{countObj.totalPoints ? countObj.totalPoints % goal : 0}}</text>
<!--<text class="point_color"> {{countObj.totalPoints ? countObj.totalPoints % goal : 0}}</text>-->
/ {{goal}}
</view>
<view class="info-ready-num">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment