status.wxml 795 B

123456789101112131415
  1. <!--module/health/pages/status/status.wxml-->
  2. <t-navbar title="指标信息" left-arrow />
  3. <scroll-view class="page-scroll__container" type="list" scroll-y style="{{containerStyle}}">
  4. <form bind:submit="onSubmit">
  5. <t-cell wx:for="{{health}}" wx:key="{{item.id}}" t-class="cell-border-gradient cell-field" t-class-note="cell-field__wrapper" title="{{item.name}}" bind:tap="onPicker">
  6. <field-ruler class="cell-field__inner full" slot="note" title="{{item.name}}" options="{{item.options}}"></field-ruler>
  7. </t-cell>
  8. <block wx:if="{{health.length}}">
  9. <view class="tips">温馨提示:指标信息越完善,我们分析的越精确</view>
  10. <form-button block index="2"></form-button>
  11. </block>
  12. </form>
  13. </scroll-view>
  14. <t-message id="{{$messageId}}"></t-message>