信达小程序
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.

128 lines
3.9 KiB

<view class="page">
3 months ago
<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="请输入真实姓名"
2 months ago
value="{{zdUserInfo.PatientName}}"
3 months ago
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
2 months ago
class="btn {{zdUserInfo.RelationType==item.id && 'active'}}"
3 months ago
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">
3 months ago
<view
class="btn {{zdUserInfo.AgeRange==index && 'active'}}"
wx:for="{{dict.AgeRange}}"
3 months ago
wx:key="index"
bind:tap="handleRedioSelect"
data-key="AgeRange"
data-id="{{index}}"
3 months ago
>
{{item}}
3 months ago
</view>
</view>
</view>
</view>
<view class="row">
<view class="row-header">
<view class="label">是否有Graves病病史</view>
3 months ago
</view>
<view class="row-content">
<view class="radio-btns">
<view
class="btn {{zdUserInfo.IsGraves==index && 'active'}}"
wx:for="{{dict.IsGraves}}"
3 months ago
wx:key="index"
bind:tap="handleRedioSelect"
data-key="IsGraves"
data-id="{{index}}"
3 months ago
>
{{item}}
3 months ago
</view>
</view>
</view>
</view>
<view class="row">
<view class="row-header">
<view class="label">是否有TED(甲状腺眼突)及其相关眼部手术史</view>
3 months ago
</view>
<view class="row-content">
<view class="radio-btns">
<view
class="btn {{zdUserInfo.HasTedSurgery==index && 'active'}}"
wx:for="{{dict.HasTedSurgery}}"
3 months ago
wx:key="index"
bind:tap="handleRedioSelect"
data-key="HasTedSurgery"
data-id="{{index}}"
3 months ago
>
{{item}}
3 months ago
</view>
</view>
</view>
</view>
</view>
2 months ago
<view class="cancellation" bind:tap="routerTo" data-url="/pages/login/index">切换医生端</view>
<view wx:if="{{zdUserInfo.IsRootUser==1}}" class="cancellation" bind:tap="handleLogout">注销账号</view>
3 months ago
</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>