t
This commit is contained in:
@@ -22,39 +22,102 @@
|
||||
|
||||
<view class="form-group">
|
||||
<text class="label">姓名:</text>
|
||||
<input class="input" type="text" placeholder="请输入姓名" bindinput="inputName" value="{{name}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="text"
|
||||
placeholder="请输入姓名"
|
||||
data-field="name"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.name}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">年龄:</text>
|
||||
<input class="input" type="digit" placeholder="请输入年龄" bindinput="inputAge" value="{{age}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入年龄"
|
||||
data-field="age"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.age}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">身高(cm):</text>
|
||||
<input class="input" type="digit" placeholder="请输入身高" bindinput="inputHeight" value="{{height}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入身高"
|
||||
data-field="height"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.height}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">骨龄:</text>
|
||||
<input class="input" type="digit" placeholder="请输入骨龄" bindinput="inputBoneAge" value="{{boneAge}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入骨龄"
|
||||
data-field="boneAge"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.boneAge}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">父亲身高(cm):</text>
|
||||
<input class="input" type="digit" placeholder="请输入父亲身高" bindinput="inputFatherHeight" value="{{fatherHeight}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入父亲身高"
|
||||
data-field="fatherHeight"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.fatherHeight}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">母亲身高(cm):</text>
|
||||
<input class="input" type="digit" placeholder="请输入母亲身高" bindinput="inputMotherHeight" value="{{motherHeight}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入母亲身高"
|
||||
data-field="motherHeight"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.motherHeight}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">IGF-1:(ng/ml)</text>
|
||||
<input class="input" type="digit" placeholder="请输入IGF基础值" bindinput="inputIGF" value="{{igf}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入IGF基础值"
|
||||
data-field="igf"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.igf}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">LH基础(mIU/ml):</text>
|
||||
<input class="input" type="digit" placeholder="请输入LH基础值" bindinput="inputLH" value="{{lh}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入LH基础值"
|
||||
data-field="lh"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.lh}}"
|
||||
/>
|
||||
</view>
|
||||
<view class="form-group">
|
||||
<text class="label">子宫厚度(mm):</text>
|
||||
<input class="input" type="digit" placeholder="请输入厚度" bindinput="inputThickness" value="{{thickness}}" />
|
||||
<input
|
||||
class="input"
|
||||
type="digit"
|
||||
placeholder="请输入厚度"
|
||||
data-field="thickness"
|
||||
bindinput="handleInput"
|
||||
value="{{formData.thickness}}"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<view class="addperson">
|
||||
|
||||
Reference in New Issue
Block a user