| 1234567891011121314151617181920212223242526272829303132 |
- <wxs module="_">
- </wxs>
- <!--module/health/components/follow-evaluation/follow-evaluation.wxml-->
- <view class="card-wrapper" wx:if="{{followEvaluationList.length>0}}">
- <view class="constitution-container">
- <view class="card-header constitution-box">
- <t-loading wx:if="{{loading}}" theme="spinner" size="20px" class="loading" />
- <view class="card-title">
- <view>
- <image src="../../assets/icon/icon_assess@2x.png" class="icon-title" />
- </view>
- <view class="text-title">随访评估</view>
- </view>
- <slot name="extra"></slot>
- </view>
- <view class="table-box">
- <view class="table">
- <view class="table-row header">
- <view class="table-cell">评估时间</view>
- <view class="table-cell">随访计划</view>
- <view class="table-cell">评估结果</view>
- </view>
- <view class="table-row" wx:for="{{followEvaluationList}}" wx:key="id" bindtap="goFollowEvaluation">
- <view class="table-cell truncate">{{item.evaluateTime}}</view>
- <view class="table-cell truncate">{{item.followupPlanName}}</view>
- <view class="table-cell truncate">{{item.evaluate.evaluateDeal==='1'?'复诊 ':item.evaluate.evaluateDeal==='2'?'中医调养':''}}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
|