| 1234567891011121314151617181920212223242526272829303132 |
- <!--module/health/pages/home/home.wxml-->
- <view class="health-container">
- <t-navbar title="{{i18n.health.title}}" left-arrow />
- <scroll-view class="page-scroll__container" type="list" scroll-y>
- <report-health-patient dataset="{{healthPatient.data}}" loading="{{healthPatient.loading}}" message="{{healthPatient.message}}">
- <view class="extra-warapper" slot="extra" catch:tap="toPatientPage">
- <text>更新记录</text>
- <t-icon t-class="icon" name="chevron-right-double-s" size="24px" />
- </view>
- </report-health-patient>
- <report-health-status></report-health-status>
- <report-health-index dataset="{{healthIndex.data}}" loading="{{healthIndex.loading}}" message="{{healthIndex.message}}">
- <view class="extra-warapper" slot="extra" catch:tap="toHealthIndexListPage">
- <text>更新记录</text>
- <t-icon t-class="icon" name="chevron-right-double-s" size="24px" />
- </view>
- </report-health-index>
- <!--我的调养方案-->
- <care-scheme wx:if="{{i18n.health.__showScheme__}}"></care-scheme>
- <!--随访记录-->
- <follow-record wx:if="{{i18n.health.__showFollowRecord__}}"></follow-record>
- <!--随访评估-->
- <follow-evaluation wx:if="{{i18n.health.__showFollowEvaluation__}}"></follow-evaluation>
- <!--调养记录-->
- <care-record wx:if="{{i18n.health.__showRecord__}}"></care-record>
- <!--线下非药物治疗-->
- <nodrug-therapy wx:if="{{i18n.health.__showNodrugTherapy__}}"></nodrug-therapy>
- <!--咨询记录-->
- <chat-record wx:if="{{i18n.health.__showChatRecord__}}"></chat-record>
- </scroll-view>
- </view>
- <t-message id="{{$messageId}}"></t-message>
|