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.

94 lines
3.2 KiB

<wxs src="../../utils/tools.wxs" module="tools" />
4 weeks ago
<page-meta page-style="{{ areaShow ? 'overflow: hidden;' : '' }}" />
1 month ago
<view class="page" id="{{theme === 'DRUG' && 'drug-page'}}">
4 weeks ago
<view class="page-header" style="background: #fff">
1 month ago
<view class="site-line">
<pickerArea
pname="{{ProvinceName}}"
pid="{{ProvinceId}}"
cid="{{CityId}}"
cname="{{CityName}}"
theme="{{theme}}"
1 month ago
bind:tap="handleTapSite"
bind:ok="handleChangeSite"
bind:show="handleSiteShareShow"
>
<view class="area">
<image class="icon" src="{{imageUrl}}{{theme === 'DRUG' ? 'icon68' : 'icon42'}}.png?t={{Timestamp}}"></image>
1 month ago
<view class="name" wx:if="{{ProvinceName}}">
{{tools.formatArea(ProvinceName, CityName)}}
1 month ago
</view>
<view class="name" wx:else>请选择省市</view>
<view class="triangle"></view>
</view>
</pickerArea>
<view class="btn" bind:tap="handleDefultLocation">{{locationName}}</view>
</view>
<view class="search">
<image class="icon" src="{{imageUrl}}icon43.png?t={{Timestamp}}"></image>
1 month ago
<input
class="input"
model:value="{{Name}}"
type="text"
placeholder="请输入关键词进行搜索"
placeholder-class="place-input"
bind:blur="handleBlur"
bind:tap="handleTapSearch"
/>
</view>
</view>
4 weeks ago
<view class="map">
1 month ago
<view
class="map-item"
wx:for="{{HosList}}"
wx:key="index"
bind:tap="handleDetail"
data-url="/pages/hospital/index?id={{item.Id}}"
>
4 weeks ago
<view class="m-header">
<view class="hosttipat-img">
<image class="img" mode="aspectFill" src="{{item.Imgs}}"></image>
1 month ago
</view>
<view class="wrap">
<view class="title">
4 weeks ago
<view class="tag" wx:if="{{item.HospitalClassificationName || item.HospitalLevelName}}">
4 weeks ago
{{item.HospitalClassificationName}}{{item.HospitalLevelName}}
1 month ago
</view>
4 weeks ago
<view class="name">{{item.Name}}</view>
1 month ago
</view>
</view>
</view>
<view class="content">
4 weeks ago
<view class="inner">
<view class="site">{{tools.formatArea(item.ProvinceName, item.CityName)}}{{item.CountyName}}{{item.Address}}</view>
1 month ago
</view>
4 weeks ago
<view class="c-footer">
<view class="tag" wx:if="{{item.DoctorNum>0}}">{{item.DoctorNum}}名医生</view>
<view
class="site-num"
catch:tap="handleOpenMap"
data-lat="{{item.LAT}}"
data-lng="{{item.LNG}}"
data-address="{{tools.formatArea(item.ProvinceName, item.CityName)}}{{item.CountyName}}{{item.Address}}"
4 weeks ago
data-name="{{item.Name}}"
>
{{item.dist}}
<image class="icon" src="{{imageUrl}}{{theme === 'DRUG' ? 'icon69' : 'icon44'}}.png?t={{Timestamp}}"></image>
1 month ago
</view>
</view>
</view>
</view>
4 weeks ago
<pagination pagination="{{pagination}}"></pagination>
1 month ago
</view>
</view>
<timeOut
bind:timeOut="handleTimeOut"
asideOut="{{asideOut}}"
timeToast="{{timeToast}}"
timeToastType="{{timeToastType}}"
timeToastParams="{{timeToastParams}}"
></timeOut>