|
|
@@ -36,7 +36,10 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="healthyAnalyze" bindtap="goHealthAnalyze" wx:if="{{isShowComplete}}">
|
|
|
+ <view wx:if="{{healthReport.loading}}" class="loading-center">
|
|
|
+ <t-loading theme="circular" size="48px" color="#2d92fd" />
|
|
|
+ </view>
|
|
|
+ <view class="healthyAnalyze" bindtap="goHealthAnalyze" wx:elif="{{isShowComplete}}">
|
|
|
请完成健康评估
|
|
|
</view>
|
|
|
<view class="steps-container" wx:else>
|
|
|
@@ -75,7 +78,7 @@
|
|
|
<view class="item-main" bindtap="toggleItem" data-index="{{index}}">
|
|
|
<text class="dot"></text>
|
|
|
<text class="item-title">{{item.conditioningProgramName}}</text>
|
|
|
- <text class="item-next-time" wx:if="{{item.arrangeDate}}">下一次时间:{{item.arrangeDate}}</text>
|
|
|
+ <text class="item-next-time" wx:if="{{item.arrangeDate && item.isOffline==='Y'}}">下一次时间:{{item.arrangeDate}}</text>
|
|
|
<t-icon name="{{item.expanded ? 'chevron-up' : 'chevron-down'}}" size="24rpx" class="item-arrow" color="#C0C4CC" />
|
|
|
</view>
|
|
|
<!-- 这里放详细内容 -->
|
|
|
@@ -92,7 +95,7 @@
|
|
|
<media-carousel wx:else mediaList="{{item.carouselMediaList}}" showIndicator="{{true}}" autoplay="{{true}}" interval="{{4000}}" circular="{{true}}" bind:imageload="onCarouselLoaded" bind:imageerror="onImageError" bind:videoerror="onVideoError" itemId="{{item.id}}" />
|
|
|
</view>
|
|
|
<view class="item-box">
|
|
|
- <view class="flex" wx:if="{{item.arrangeDate}}"><text>下一次时间:</text><text>{{item.arrangeDate}}</text></view>
|
|
|
+ <view class="flex" wx:if="{{item.arrangeDate && item.isOffline==='Y'}}"><text>下一次时间:</text><text>{{item.arrangeDate}}</text></view>
|
|
|
<view class="flex">
|
|
|
<text wx:if="{{item.isOffline==='Y'}}">已完成:<text style="color:#2ec4b6">{{item.finishCount}}次</text><text style="margin:0 5px">/</text>
|
|
|
<text>{{item.totalMeasure}}次</text></text>
|