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.
61 lines
2.6 KiB
61 lines
2.6 KiB
<view class="page"> |
|
<image wx:if="{{detail.ImgUrl}}" class="banner" mode="widthFix" src="{{detail.ImgUrl}}"></image> |
|
<image wx:else class="banner" mode="widthFix" src="{{imageUrl}}za-images//nrdl/dtp-durg.png"></image> |
|
<view class="container"> |
|
<view class="title">{{detail.Name}}</view> |
|
<view class="tags"> |
|
<view class="tag" wx:if="{{detail.IsOwnInfusionCenter==1}}"> |
|
<image class="icon" mode="widthFix" src="{{imageUrl}}za-images//nrdl/inject.png"></image> |
|
<!-- {{detail.OwnInfusionCenterName}} --> |
|
自有输注中心 |
|
</view> |
|
<view class="tag" wx:if="{{detail.IsCooperationInfusionCenter==1}}"> |
|
<image class="icon" mode="widthFix" src="{{imageUrl}}za-images//nrdl/cooperate.png"></image> |
|
<!-- {{detail.CooperationInfusionCenterName}} --> |
|
合作输注中心 |
|
</view> |
|
</view> |
|
<view class="content"> |
|
<view class="inner"> |
|
<view class="site">{{detail.ProvinceName}}{{detail.CityName}}{{detail.CountyName}}{{detail.Address}}</view> |
|
<view class="tel">{{detail.Telephone}}</view> |
|
</view> |
|
<view class="options"> |
|
<view class="option" bind:tap="handleSite" wx:if="{{detail.Address}}"> |
|
<view class="phone"> |
|
<image class="phone-img" src="{{imageUrl}}za-images//nrdl/site.png"></image> |
|
</view> |
|
<view class="name">地址</view> |
|
</view> |
|
<view class="option" bind:tap="handlePhone"> |
|
<view class="phone"> |
|
<image class="phone-img" src="{{imageUrl}}za-images//nrdl/phone.png"></image> |
|
</view> |
|
<view class="name">电话</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="card" wx:if="{{detail.IsOwnInfusionCenter==1}}"> |
|
<view class="c-title"> |
|
<image |
|
class="c-icon" |
|
src="{{imageUrl}}za-images//nrdl/cooperate-1.png" |
|
style="width: 32rpx; height: 30rpx; margin-right: 18rpx" |
|
></image> |
|
自有输注中心 |
|
</view> |
|
<view class="c-content">{{detail.OwnInfusionCenterName}}</view> |
|
</view> |
|
<view class="card" wx:if="{{detail.IsCooperationInfusionCenter==1}}"> |
|
<view class="c-title"> |
|
<image class="c-icon" src="{{imageUrl}}za-images//nrdl/inject-1.png" style="width: 36rpx; height: 36rpx"></image> |
|
合作输注中心 |
|
</view> |
|
<view class="c-content">{{detail.CooperationInfusionCenterName}}</view> |
|
</view> |
|
<view class="remark" wx:if="{{detail.Remark}}"> |
|
<view class="r-title">备注</view> |
|
<view class="r-content">{{detail.Remark}}</view> |
|
</view> |
|
</view> |
|
</view>
|
|
|