- <!--module/health/pages/status/status.wxml-->
- <t-navbar title="{{i18n.healthIndex.title}}" left-arrow />
- <scroll-view wx:if="{{i18n.healthIndex.__show__}}" 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">{{i18n.healthIndex.tips}}</view>
- <form-button block index="1" id="submitBtn"></form-button>
- </block>
- </form>
- </scroll-view>
- <view wx:else style="text-align: center;margin: 100px;">暂无数据</view>
- <t-message id="{{$messageId}}"></t-message>
|