- <!--module/health/pages/status/status.wxml-->
- <t-navbar title="指标信息" left-arrow />
- <scroll-view class="page-scroll__container" type="list" scroll-y style="{{containerStyle}}">
- <form bind:submit="onSubmit">
- <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">
- <field-ruler class="cell-field__inner full" slot="note" title="{{item.name}}" options="{{item.options}}"></field-ruler>
- </t-cell>
- <block wx:if="{{health.length}}">
- <view class="tips">温馨提示:指标信息越完善,我们分析的越精</view>
- <form-button block index="2"></form-button>
- </block>
- </form>
- </scroll-view>
- <t-message id="{{$messageId}}"></t-message>
|