You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
3.2 KiB
90 lines
3.2 KiB
<view class="page"> |
|
<navbar fixed title="录入信息" custom-style="background:{{background}}"></navbar> |
|
<image class="bg" src="{{imageUrl}}bg10.png?t={{Timestamp}}"></image> |
|
<view class="page-container" style="padding-top:{{pageTop+24}}px;"> |
|
<view class="content"> |
|
<view class="switch"> |
|
<view class="item {{relationType==1 && 'active'}}" bind:tap="handleRelationType" data-id="1"> |
|
<view class="icon-wrap"> |
|
<image class="icon" src="{{imageUrl}}icon28.png?t={{Timestamp}}"></image> |
|
</view> |
|
<view class="name">患者本人</view> |
|
</view> |
|
<view class="item {{relationType==2 && 'active'}}" bind:tap="handleRelationType" data-id="2"> |
|
<view class="icon-wrap"> |
|
<image class="icon" src="{{imageUrl}}icon29.png?t={{Timestamp}}"></image> |
|
</view> |
|
<view class="name">患者亲友</view> |
|
</view> |
|
</view> |
|
<view class="row"> |
|
<input |
|
model:value="{{name}}" |
|
class="input input-required" |
|
placeholder-class="input-place" |
|
focus |
|
maxlength="{{8}}" |
|
placeholder="怎么称呼{{relationType==1?'您':'患者'}}?" |
|
/> |
|
</view> |
|
<view class="tip">请您输入真实姓名,便于医生识别随访</view> |
|
<view class="row-title">患者性别</view> |
|
<view class="row"> |
|
<view class="item {{gender==2 && 'active'}}" bind:tap="handleGender" data-id="2"> |
|
<image class="icon" src="{{imageUrl}}{{gender==2 ? 'icon57' : 'icon55'}}.png?t={{Timestamp}}"></image> |
|
女 |
|
</view> |
|
<view class="item {{gender==1 && 'active'}}" bind:tap="handleGender" data-id="1"> |
|
<image class="icon" src="{{imageUrl}}{{gender==1 ? 'icon58' : 'icon56'}}.png?t={{Timestamp}}"></image> |
|
男 |
|
</view> |
|
</view> |
|
<view class="row-title">患者年龄范围</view> |
|
<view class="row row-age"> |
|
<view |
|
class="age-item {{ageRange==index && 'active'}}" |
|
data-id="{{index}}" |
|
wx:for="{{dict.AgeRange}}" |
|
wx:key="index" |
|
bind:tap="handleSelectAge" |
|
> |
|
{{item}} |
|
</view> |
|
</view> |
|
<view class="row-title"> |
|
是否有Graves病病史 |
|
<div class="sub">(非必填)</div> |
|
</view> |
|
<view class="row row-age"> |
|
<view |
|
class="age-item {{IsGraves==index && 'active'}}" |
|
data-id="{{index}}" |
|
wx:for="{{dict.IsGraves}}" |
|
wx:key="index" |
|
bind:tap="handleSelectIsGraves" |
|
> |
|
{{item}} |
|
</view> |
|
</view> |
|
<view class="row-title"> |
|
是否有TED(甲状腺眼突)及其相关眼部手术史 |
|
<div class="sub">(非必填)</div> |
|
</view> |
|
<view class="row row-age"> |
|
<view |
|
class="age-item {{HasTedSurgery==index && 'active'}}" |
|
data-id="{{index}}" |
|
wx:for="{{dict.HasTedSurgery}}" |
|
wx:key="index" |
|
bind:tap="handleSelectHasTedSurgery" |
|
> |
|
{{item}} |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="footer"> |
|
<view bind:tap="handleSubmit" class="next">立即进入</view> |
|
<view bind:tap="handleVisitors" class="cancel">随便看看</view> |
|
</view> |
|
</view>
|
|
|