| 123456789101112131415161718192021222324252627282930 |
- <!--module/health/pages/home/home.wxml-->
- <view class="health-container">
- <t-navbar 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></care-scheme>
- <!--随访记录-->
- <follow-record></follow-record>
- <!--随访评估-->
- <follow-evaluation></follow-evaluation>
- <!--调养记录-->
- <care-record></care-record>
- <!--线下非药物治疗-->
- <nodrug-therapy></nodrug-therapy>
- </scroll-view>
- </view>
- <t-message id="{{$messageId}}"></t-message>
|