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