home.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. <!--module/health/pages/home/home.wxml-->
  2. <view class="health-container">
  3. <t-navbar title="{{i18n.health.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 wx:if="{{i18n.health.__showScheme__}}"></care-scheme>
  20. <!--随访记录-->
  21. <follow-record wx:if="{{i18n.health.__showFollowRecord__}}"></follow-record>
  22. <!--随访评估-->
  23. <follow-evaluation wx:if="{{i18n.health.__showFollowEvaluation__}}"></follow-evaluation>
  24. <!--调养记录-->
  25. <care-record wx:if="{{i18n.health.__showRecord__}}"></care-record>
  26. <!--线下非药物治疗-->
  27. <nodrug-therapy wx:if="{{i18n.health.__showNodrugTherapy__}}"></nodrug-therapy>
  28. <!--咨询记录-->
  29. <chat-record wx:if="{{i18n.health.__showChatRecord__}}"></chat-record>
  30. </scroll-view>
  31. </view>
  32. <t-message id="{{$messageId}}"></t-message>