follow-record.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_record@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="goFollowRecord">
  24. <view class="table-cell">{{item.arrangeTime}}</view>
  25. <view class="table-cell"><view class="ellipsis">{{item.followupPlanName}}</view></view>
  26. <view class="table-cell">{{item.progress==='1'?'未完成':item.progress==='2'?'已完成':item.progress==='0'?'未开始':''}}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>