| 123456789101112131415161718192021222324 |
- <!--module/health/pages/tongue-analysis/tongue-analysis.wxml-->
- <t-navbar title="异常舌象分析" left-arrow />
- <scroll-view class="page-scroll__container" type="list" scroll-y style="{{containerStyle}}">
- <view class="card-wrapper" wx:for="{{dataset}}" wx:key="actualValue">
- <t-cell t-class="card-header cell-border-gradient" title="{{item.actualValue}}" />
- <view class="card-body">
- <view class="picture-wrapper">
- <image wx:if="{{item.splitImage}}" src="{{item.splitImage}}" mode="aspectFit" />
- <view style="display: flex;flex-direction: column;">
- <t-tag style="margin: 4px 0;" wx:for="{{item.attrs}}" wx:key="*this" theme="danger">{{item}}</t-tag>
- </view>
- </view>
- <span class="row" wx:if="{{item.features}}">
- <text class="label primary">【特征】</text>
- <text>{{item.features}}</text>
- </span>
- <span class="row" wx:if="{{item.clinicalSignificance}}">
- <text class="primary">【临床意义】</text>
- <text>{{item.clinicalSignificance}}</text>
- </span>
- </view>
- </view>
- </scroll-view>
|