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.
59 lines
2.4 KiB
59 lines
2.4 KiB
<navbar fixed z-index="2" title="选择我的定点检查医院" custom-style="background:{{background}}" back> |
|
<van-icon name="arrow-left" slot="left" size="18px" color="#000" bind:tap="handleBack" /> |
|
</navbar> |
|
<view class="page" style="padding-top:{{pageTop + 30}}px"> |
|
<view class="bind-doctor" bindtap="handleBindDoctor"> |
|
<view class="title">选择您的绑定医生,自动确定您的定点检查医院</view> |
|
<image class="icon" src="{{imageUrl}}icon82.png?t={{Timestamp}}"></image> |
|
</view> |
|
<view class="form"> |
|
<view class="search"> |
|
<image class="icon" src="{{imageUrl}}icon33.png?t={{Timestamp}}"></image> |
|
<input |
|
type="text" |
|
model:value="{{search}}" |
|
placeholder-class="place-input" |
|
placeholder="请输入搜索您的定点检查医院" |
|
class="input" |
|
bindconfirm="handleSearch" |
|
/> |
|
</view> |
|
<pickerArea mode="region" value="{{CityId}}" level="city" level="{{2}}" bind:change="handleAreaChange"> |
|
<view class="picker"> |
|
<view class="picker-item">{{provinceName || '省份'}}</view> |
|
<view class="picker-item">{{cityName || '城市'}}</view> |
|
<view class="clear" catchtap="handleClear"> |
|
<image class="icon" src="{{imageUrl}}icon98.png?t={{Timestamp}}"></image> |
|
重选 |
|
</view> |
|
</view> |
|
</pickerArea> |
|
</view> |
|
<view class="tip">定点检查医院为接受过相关培训的定点合作医院</view> |
|
<view class="list"> |
|
<view class="list-item" wx:for="{{list}}" wx:key="hospitalId" bind:tap="handleSelect" data-index="{{index}}"> |
|
<view class="aside"> |
|
<image wx:if="{{selectId == item.hospitalId}}" class="icon" src="{{imageUrl}}icon34.png?t={{Timestamp}}"></image> |
|
<image wx:else class="icon" src="{{imageUrl}}icon35.png?t={{Timestamp}}"></image> |
|
</view> |
|
<view class="container"> |
|
<view class="logo"> |
|
<image class="logo-img" src="{{item.hospitalImg}}"></image> |
|
</view> |
|
<view class="wrap"> |
|
<view class="name">{{item.hospitalName}}</view> |
|
<view class="content">{{item.provinceName}}{{item.cityName}}{{item.countyName}}{{item.address}}</view> |
|
</view> |
|
</view> |
|
</view> |
|
<pagination pagination="{{pagination}}"></pagination> |
|
</view> |
|
</view> |
|
|
|
<popup |
|
show="{{popupShow}}" |
|
type="{{popupType}}" |
|
params="{{popupParams}}" |
|
bind:ok="handlePopupOk" |
|
bind:cancel="handlePopupCancel" |
|
></popup>
|
|
|