84 lines
2.3 KiB
Plaintext
84 lines
2.3 KiB
Plaintext
<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"
|
||
type="digit"
|
||
placeholder="请输入骨龄,精确到小数点后两位"
|
||
bindinput="inputBA"
|
||
value="{{ba}}"
|
||
/>
|
||
</view>
|
||
|
||
<view class="form-group">
|
||
<text class="form-label">实际年龄(岁)</text>
|
||
<input
|
||
class="form-input"
|
||
type="digit"
|
||
placeholder="请输入实际年龄,精确到小数点后两位"
|
||
bindinput="inputCA"
|
||
value="{{ca}}"
|
||
/>
|
||
</view>
|
||
|
||
<view class="form-group">
|
||
<text class="form-label">IGF-1值</text>
|
||
<input
|
||
class="form-input"
|
||
type="digit"
|
||
placeholder="请输入IGF-1检验值,精确到小数点后两位"
|
||
bindinput="inputIGF1"
|
||
value="{{igf1}}"
|
||
/>
|
||
</view>
|
||
|
||
<view class="form-group">
|
||
<text class="form-label">IGFBP-3值</text>
|
||
<input
|
||
class="form-input"
|
||
type="digit"
|
||
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>
|
||
<!-- 计算结果 -->
|
||
<view class="result-container" wx:if="{{showResult}}">
|
||
<text class="result-title">计算结果</text>
|
||
|
||
<!-- 计算过程 -->
|
||
<!-- <view class="calculation-process">
|
||
<text class="process-title">计算过程:</text>
|
||
<view class="process-steps">
|
||
<text>{{calculationDetails.steps}}</text>
|
||
</view>
|
||
</view> -->
|
||
|
||
<!-- 结果解释 -->
|
||
<view class="result-interpretation">
|
||
<text class="interpretation-text">{{calculationDetails.interpretation}}</text>
|
||
</view>
|
||
|
||
<view class="tips">
|
||
注:本计算结果仅供参考,具体诊断请咨询专业医生。预测模型基于二元Logistic回归分析。
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
</view> |