home.wxml 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <!--module/health/pages/home/home.wxml-->
  2. <view class="health-container">
  3. <t-navbar title="健康档案" left-arrow />
  4. <scroll-view class="page-scroll__container" type="list" scroll-y>
  5. <report-health-patient dataset="{{healthPatient.data}}" loading="{{healthPatient.loading}}" message="{{healthPatient.message}}">
  6. <view class="extra-warapper" slot="extra" catch:tap="toPatientPage">
  7. <text>更新记录</text>
  8. <t-icon t-class="icon" name="chevron-right-double-s" size="24px" />
  9. </view>
  10. </report-health-patient>
  11. <report-health-status></report-health-status>
  12. <report-health-index dataset="{{healthIndex.data}}" loading="{{healthIndex.loading}}" message="{{healthIndex.message}}">
  13. <view class="extra-warapper" slot="extra" catch:tap="toHealthIndexListPage">
  14. <text>更新记录</text>
  15. <t-icon t-class="icon" name="chevron-right-double-s" size="24px" />
  16. </view>
  17. </report-health-index>
  18. <!--我的调养方案-->
  19. <care-scheme></care-scheme>
  20. <!--随访记录-->
  21. <follow-record></follow-record>
  22. <!--随访评估-->
  23. <follow-evaluation></follow-evaluation>
  24. <!--调养记录-->
  25. <care-record></care-record>
  26. <!--线下非药物治疗-->
  27. <nodrug-therapy></nodrug-therapy>
  28. </scroll-view>
  29. </view>
  30. <t-message id="{{$messageId}}"></t-message>