report-health-scheme.wxml 886 B

1234567891011121314151617181920
  1. <!--module/health/components/report-health-scheme/report-health-scheme.wxml-->
  2. <view wx:if="{{show}}" class="wrapper" style="width: {{wrapper.width}}; height: {{wrapper.height}};">
  3. <image class="wrapper__bg" src="../../assets/image/health-scheme.png" mode="widthFix" />
  4. <view class="wrapper__content">
  5. <view class="row row-1">
  6. <view class="label">调理进程</view>
  7. <view>{{dataset.process}}</view>
  8. </view>
  9. <view class="row row-2">
  10. <view class="label">方案内容</view>
  11. <scroll-view class="scrollable" type="custom" scroll-y bounces="{{false}}">
  12. <grid-builder list="{{dataset.types}}" cross-axis-count="2" cross-axis-gap="8" main-axis-gap="8">
  13. <view slot:item slot:index style="height: 24px;">
  14. <view>{{item.type}}</view>
  15. </view>
  16. </grid-builder>
  17. </scroll-view>
  18. </view>
  19. </view>
  20. </view>