|
|
|
|
<view class="page">
|
|
|
|
|
<view class="page-container">
|
|
|
|
|
<view class="banner-new">
|
|
|
|
|
<view class="row">
|
|
|
|
|
<view class="row-header">
|
|
|
|
|
<view class="label">姓名</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-content">
|
|
|
|
|
<input
|
|
|
|
|
class="input"
|
|
|
|
|
placeholder-class="place-input"
|
|
|
|
|
placeholder="请输入真实姓名"
|
|
|
|
|
value="{{zdUserInfo.PatientName}}"
|
|
|
|
|
maxlength="{{8}}"
|
|
|
|
|
bindinput="handleInput"
|
|
|
|
|
data-key="PatientName"
|
|
|
|
|
bindblur="updateUserInfo"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row">
|
|
|
|
|
<view class="row-header">
|
|
|
|
|
<view class="label">身份</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-content">
|
|
|
|
|
<view class="radio-btns">
|
|
|
|
|
<view
|
|
|
|
|
class="btn {{zdUserInfo.RelationType==item.id && 'active'}}"
|
|
|
|
|
wx:for="{{RTList}}"
|
|
|
|
|
wx:key="index"
|
|
|
|
|
bind:tap="handleRedioSelect"
|
|
|
|
|
data-key="RelationType"
|
|
|
|
|
data-id="{{item.id}}"
|
|
|
|
|
>
|
|
|
|
|
{{item.value}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row">
|
|
|
|
|
<view class="row-header">
|
|
|
|
|
<view class="label">年龄范围</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-content">
|
|
|
|
|
<view class="radio-btns radio-btns3">
|
|
|
|
|
<view
|
|
|
|
|
class="btn {{zdUserInfo.AgeRange==item.id && 'active'}}"
|
|
|
|
|
wx:for="{{ageRangeList}}"
|
|
|
|
|
wx:key="index"
|
|
|
|
|
bind:tap="handleRedioSelect"
|
|
|
|
|
data-key="AgeRange"
|
|
|
|
|
data-id="{{item.id}}"
|
|
|
|
|
>
|
|
|
|
|
{{item.value}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row">
|
|
|
|
|
<view class="row-header">
|
|
|
|
|
<view class="label">
|
|
|
|
|
是否有Graves病病史
|
|
|
|
|
<text class="sub">(非必填)</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-content">
|
|
|
|
|
<view class="radio-btns">
|
|
|
|
|
<view
|
|
|
|
|
wx:for="{{antibodyTypeRangeList}}"
|
|
|
|
|
wx:key="index"
|
|
|
|
|
class="btn {{zdUserInfo.AntibodyType + '' === item.id && 'active'}}"
|
|
|
|
|
data-key="AntibodyType"
|
|
|
|
|
data-id="{{item.id}}"
|
|
|
|
|
bind:tap="handleRadio"
|
|
|
|
|
>
|
|
|
|
|
{{item.value}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row">
|
|
|
|
|
<view class="row-header">
|
|
|
|
|
<view class="label">是否有TED(甲状腺眼突)及其相关眼部手术史(非必填)</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="row-content">
|
|
|
|
|
<view class="radio-btns">
|
|
|
|
|
<view
|
|
|
|
|
wx:for="{{thyroidAbnormalRangeList}}"
|
|
|
|
|
wx:key="index"
|
|
|
|
|
class="btn {{zdUserInfo.ThyroidAbnormal + '' === item.id && 'active'}}"
|
|
|
|
|
data-key="ThyroidAbnormal"
|
|
|
|
|
data-id="{{item.id}}"
|
|
|
|
|
bind:tap="handleRadio"
|
|
|
|
|
>
|
|
|
|
|
{{item.value}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="cancellation" bind:tap="routerTo" data-url="/pages/login/index">切换医生端</view>
|
|
|
|
|
<view wx:if="{{zdUserInfo.IsRootUser==1}}" class="cancellation" bind:tap="handleLogout">注销账号</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<van-popup
|
|
|
|
|
class="popup"
|
|
|
|
|
show="{{ diagnoseTypeShow }}"
|
|
|
|
|
position="bottom"
|
|
|
|
|
round
|
|
|
|
|
close-on-click-overlay
|
|
|
|
|
bind:close="handleDiagnoseTypeShow"
|
|
|
|
|
>
|
|
|
|
|
<view class="popup-title">
|
|
|
|
|
<view class="close" bind:tap="handleDiagnoseTypeShow">关闭</view>
|
|
|
|
|
<view class="sure" bind:tap="handleDiagnoseTypeSave">保存</view>
|
|
|
|
|
</view>
|
|
|
|
|
<picker-view
|
|
|
|
|
class="popup-picker"
|
|
|
|
|
indicator-style="height: 50px;"
|
|
|
|
|
style="width: 100%; height: 300px"
|
|
|
|
|
value="{{[selectDiagnoseTypeIndex]}}"
|
|
|
|
|
bindchange="handleChangeDiagnoseType"
|
|
|
|
|
bindpickstart="handelUpdateDiagnoseType"
|
|
|
|
|
>
|
|
|
|
|
<picker-view-column>
|
|
|
|
|
<view class="picker-col" wx:for="{{DTList}}">{{item.value}}</view>
|
|
|
|
|
</picker-view-column>
|
|
|
|
|
</picker-view>
|
|
|
|
|
</van-popup>
|