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.
80 lines
3.1 KiB
80 lines
3.1 KiB
<navbar fixed title="医保政策" custom-style="background:{{background}}" z-index="10"> |
|
<van-icon name="arrow-left" slot="left" size="18px" color="#000" bind:tap="handleBack" /> |
|
</navbar> |
|
<view class="page" style="padding-top: {{pageTop+60}}px;"> |
|
<view class="banner"> |
|
<view class="badge"> |
|
<image class="b-img" src="{{detail.imgs || '{{imageUrl}}bg1.png?t={{Timestamp}}'}}"></image> |
|
</view> |
|
<view class="name">{{detail.hospitalName || ''}}</view> |
|
<view class="title" style="background: url('{{imageUrl}}bg28.png?t={{Timestamp}}') no-repeat top left/52rpx 52rpx"> |
|
用药方式 |
|
</view> |
|
<view class="content" bind:tap="handleInfo"> |
|
{{medicationMethods}} |
|
<image class="icon" src="{{imageUrl}}icon113.png?t={{Timestamp}}"></image> |
|
</view> |
|
</view> |
|
<view class="container"> |
|
<view |
|
class="c-header" |
|
style="background: url('{{imageUrl}}bg28.png?t={{Timestamp}}') no-repeat top left/52rpx 52rpx" |
|
> |
|
医保政策 |
|
<view class="status" wx:if="{{detail.isReimbursement == '1'}}"> |
|
<image class="icon" src="{{imageUrl}}icon114.png?t={{Timestamp}}"></image> |
|
可报销 |
|
</view> |
|
</view> |
|
<view class="row"> |
|
<view class="r-title">起付线</view> |
|
<view class="r-content">{{detail.threshold || '暂无'}}</view> |
|
</view> |
|
<view class="row"> |
|
<view class="r-title">个人先行自付比例</view> |
|
<view class="r-content">{{detail.individualRatio || '暂无'}}</view> |
|
</view> |
|
<view class="row"> |
|
<view class="r-title">职工医保</view> |
|
<view class="r-content">{{detail.employeeMedicalInsurance || '暂无'}}</view> |
|
</view> |
|
<view class="row"> |
|
<view class="r-title">居民医保</view> |
|
<view class="r-content">{{detail.residentMedicalInsurance || '暂无'}}</view> |
|
</view> |
|
<view class="row"> |
|
<view class="r-title">其他信息</view> |
|
<view class="r-content">{{detail.otherInfo || '暂无'}}</view> |
|
</view> |
|
<view class="tip">注:各地医保报销比例和具体政策请以当地执行为准</view> |
|
<view class="feedback" bind:tap="handleFeedback"> |
|
信息有误?点击反馈 |
|
<image class="icon" src="{{imageUrl}}icon130.png?t={{Timestamp}}"></image> |
|
</view> |
|
</view> |
|
<view class="page-footer"> |
|
<view class="btn" bind:tap="handleConsult">我要咨询</view> |
|
<view wx:if="{{detail.isShow==1}}" class="btn" bind:tap="handleHostipal">了解就诊医院</view> |
|
</view> |
|
</view> |
|
|
|
<van-popup show="{{ show }}" position="bottom" bind:close="onClose" closeable round custom-style="background:#f6f8f9 "> |
|
<view class="popup-consult"> |
|
<view class="item" bind:tap="handlePhone"> |
|
<image class="icon" src="{{imageUrl}}icon115.png?t={{Timestamp}}"></image> |
|
<view class="name">电话咨询</view> |
|
</view> |
|
<view class="item" bind:tap="handleCustomerService"> |
|
<image class="icon" src="{{imageUrl}}icon116.png?t={{Timestamp}}"></image> |
|
<view class="name">咨询客服</view> |
|
</view> |
|
</view> |
|
</van-popup> |
|
|
|
<popup |
|
show="{{popupShow}}" |
|
type="{{popupType}}" |
|
params="{{popupParams}}" |
|
bind:ok="handlePopupOk" |
|
bind:cancel="handlePopupCancel" |
|
></popup>
|
|
|