2025-03-14 22:37:20 +08:00
|
|
|
|
<van-nav-bar
|
|
|
|
|
|
title="GHD预测计算"
|
|
|
|
|
|
left-text=""
|
|
|
|
|
|
left-arrow
|
|
|
|
|
|
bind:click-left="onClickLeft"
|
|
|
|
|
|
class="nav-bar custom-nav"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="container">
|
|
|
|
|
|
<!-- 输入表单 -->
|
|
|
|
|
|
<view class="form-container">
|
|
|
|
|
|
<view class="form-group">
|
|
|
|
|
|
<text class="form-label">骨龄(岁)</text>
|
|
|
|
|
|
<input
|
|
|
|
|
|
class="form-input"
|
2025-03-15 12:40:01 +08:00
|
|
|
|
type="digit"
|
2025-03-14 22:37:20 +08:00
|
|
|
|
placeholder="请输入骨龄,精确到小数点后两位"
|
|
|
|
|
|
bindinput="inputBA"
|
|
|
|
|
|
value="{{ba}}"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="form-group">
|
|
|
|
|
|
<text class="form-label">实际年龄(岁)</text>
|
|
|
|
|
|
<input
|
|
|
|
|
|
class="form-input"
|
2025-03-15 12:40:01 +08:00
|
|
|
|
type="digit"
|
2025-03-14 22:37:20 +08:00
|
|
|
|
placeholder="请输入实际年龄,精确到小数点后两位"
|
|
|
|
|
|
bindinput="inputCA"
|
|
|
|
|
|
value="{{ca}}"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="form-group">
|
|
|
|
|
|
<text class="form-label">IGF-1值</text>
|
|
|
|
|
|
<input
|
|
|
|
|
|
class="form-input"
|
2025-03-15 12:40:01 +08:00
|
|
|
|
type="digit"
|
2025-03-14 22:37:20 +08:00
|
|
|
|
placeholder="请输入IGF-1检验值,精确到小数点后两位"
|
|
|
|
|
|
bindinput="inputIGF1"
|
|
|
|
|
|
value="{{igf1}}"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="form-group">
|
|
|
|
|
|
<text class="form-label">IGFBP-3值</text>
|
|
|
|
|
|
<input
|
|
|
|
|
|
class="form-input"
|
2025-03-15 12:40:01 +08:00
|
|
|
|
type="digit"
|
2025-03-14 22:37:20 +08:00
|
|
|
|
placeholder="请输入IGFBP-3检验值,精确到小数点后两位"
|
|
|
|
|
|
bindinput="inputIGFBP3"
|
|
|
|
|
|
value="{{igfbp3}}"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="button-group">
|
|
|
|
|
|
<view class="button" bindtap="calculate">计算</view>
|
|
|
|
|
|
<view class="button secondary" bindtap="reset">重置</view>
|
2025-03-23 23:16:55 +08:00
|
|
|
|
<!-- 计算结果 -->
|
2025-03-14 22:37:20 +08:00
|
|
|
|
<view class="result-container" wx:if="{{showResult}}">
|
|
|
|
|
|
<text class="result-title">计算结果</text>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 计算过程 -->
|
2025-03-23 23:16:55 +08:00
|
|
|
|
<!-- <view class="calculation-process">
|
2025-03-14 22:37:20 +08:00
|
|
|
|
<text class="process-title">计算过程:</text>
|
|
|
|
|
|
<view class="process-steps">
|
|
|
|
|
|
<text>{{calculationDetails.steps}}</text>
|
|
|
|
|
|
</view>
|
2025-03-23 23:16:55 +08:00
|
|
|
|
</view> -->
|
2025-03-14 22:37:20 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 结果解释 -->
|
|
|
|
|
|
<view class="result-interpretation">
|
|
|
|
|
|
<text class="interpretation-text">{{calculationDetails.interpretation}}</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="tips">
|
|
|
|
|
|
注:本计算结果仅供参考,具体诊断请咨询专业医生。预测模型基于二元Logistic回归分析。
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-03-23 23:16:55 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-03-14 22:37:20 +08:00
|
|
|
|
</view>
|