status.wxml 900 B

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