Files
szjs/pages/igfrefer/igfrefer.wxml
2025-03-10 23:51:01 +08:00

61 lines
1.9 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<van-nav-bar
title="IGF-1参考值"
left-text=""
left-arrow
bind:click-left="onClickLeft"
class="nav-bar custom-nav"
/>
<view class="table-title">男孩n=416</view>
<view class="table-container">
<view class="table-header">
<view class="cell">龄(岁)</view>
<view class="cell">n</view>
<view class="cell">-2SD</view>
<view class="cell">-1SD</view>
<view class="cell">平均值</view>
<view class="cell">1SD</view>
<view class="cell">2SD</view>
</view>
<block wx:for="{{dataList}}" wx:key="index">
<view class="table-row">
<view class="cell">{{item.age}}</view>
<view class="cell">{{item.n}}</view>
<view class="cell">{{item['-2SD']}}</view>
<view class="cell">{{item['-1SD']}}</view>
<view class="cell">{{item['平均值']}}</view>
<view class="cell">{{item['1SD']}}</view>
<view class="cell">{{item['2SD']}}</view>
</view>
</block>
</view>
<!-- 添加女孩IGF-1参考值部分 -->
<view class="table-title">女孩n=416</view>
<view class="table-container">
<view class="table-header">
<view class="cell">龄(岁)</view>
<view class="cell">n</view>
<view class="cell">-2SD</view>
<view class="cell">-1SD</view>
<view class="cell">平均值</view>
<view class="cell">1SD</view>
<view class="cell">2SD</view>
</view>
<block wx:for="{{girlDataList}}" wx:key="index">
<view class="table-row">
<view class="cell">{{item.age}}</view>
<view class="cell">{{item.n}}</view>
<view class="cell">{{item['-2SD']}}</view>
<view class="cell">{{item['-1SD']}}</view>
<view class="cell">{{item['平均值']}}</view>
<view class="cell">{{item['1SD']}}</view>
<view class="cell">{{item['2SD']}}</view>
</view>
</block>
</view>
<view class="note">注:以上数据仅供参考,具体请以医生诊断为准。</view>