follow-evaluation.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <wxs module="_">
  2. </wxs>
  3. <!--module/health/components/follow-evaluation/follow-evaluation.wxml-->
  4. <view class="card-wrapper" wx:if="{{followEvaluationList.length>0}}">
  5. <view class="constitution-container">
  6. <view class="card-header constitution-box">
  7. <t-loading wx:if="{{loading}}" theme="spinner" size="20px" class="loading" />
  8. <view class="card-title">
  9. <view>
  10. <image src="../../assets/icon/icon_assess@2x.png" class="icon-title" />
  11. </view>
  12. <view class="text-title">随访评估</view>
  13. </view>
  14. <slot name="extra"></slot>
  15. </view>
  16. <view class="table-box">
  17. <view class="table">
  18. <view class="table-row header">
  19. <view class="table-cell">评估时间</view>
  20. <view class="table-cell">随访计划</view>
  21. <view class="table-cell">评估结果</view>
  22. </view>
  23. <view class="table-row" wx:for="{{followEvaluationList}}" wx:key="id" bindtap="goFollowEvaluation">
  24. <view class="table-cell truncate">{{item.evaluateTime}}</view>
  25. <view class="table-cell truncate">{{item.followupPlanName}}</view>
  26. <view class="table-cell truncate">{{item.evaluate.evaluateDeal==='1'?'复诊 ':item.evaluate.evaluateDeal==='2'?'中医调养':''}}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>