123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <wrapper>
- <!-- 新页面 -->
- <view class="ybv2">
- <view class="page-index">
- <view class="hd">
- <view class="info">
- <view class="info-hd">付款给</view>
- <view class="info-bd">南方医院太和分院</view>
- </view>
- <view class="info-icon">
-
- </view>
- <view class="bg"></view>
- </view>
- <view class="bd">
- <view class="box">
- <view class="box-hd">
- <view class="box-hd-label">费用总额</view>
- <view class="box-hd-value">{{isCulculate ? '核算中': preConfirmInfo.feeSumamt || 0 + "元"}}</view>
- </view>
- <view class="box-bd">
- <view class="box-item">
- <view class="box-bd-label">医保基金支付</view>
- <view class="box-bd-value">{{isCulculate ? '核算中': preConfirmInfo.fundPay || 0 + "元"}}</view>
- </view>
- <view class="box-item">
- <view class="box-bd-label">个人帐户支付</view>
- <view class="box-bd-value">{{isCulculate ? '核算中': preConfirmInfo.psnAcctPay || 0 + "元"}}</view>
- </view>
- <view class="box-item">
- <view class="box-bd-label">其他抵扣金额</view>
- <view class="box-bd-value">0元</view>
- </view>
- </view>
- <view class="box-ft">
- <view class="box-ft-label">现金支付</view>
- <view class="box-ft-value">{{isCulculate ? '核算中': preConfirmInfo.ownPayAmt || 0 + "元"}}</view>
- </view>
- <view
- class="box-append"
- onTap="handleActionsheet"
- >
- 查看明细
- </view>
- </view>
- <!-- 个帐支付 -->
- <view className="personal-pay">
- <view className="title">个人账户支付</view>
- <view className="btns">
- <button data-valuex="{{ true }}" onTap="handleIsUserPersonalAccount" className="{{isUserPersonalAccount ? 'y' : 'n'}}">使用</button>
- <button data-valuex="{{ false }}" onTap="handleIsUserPersonalAccount" className="{{!isUserPersonalAccount ? 'y' : 'n'}}">不使用</button>
- </view>
- </view>
-
- <view class="bd-append">
- <view class="bd-append-icon"></view>
- <view class="bd-append-text">医保移动支付</view>
- </view>
- </view>
- <view class="ft">
- <view class="pay">
- <view class="pay-label">您还需支付:</view>
- <view class="pay-value">{{isCulculate ? '核算中': "¥" + (preConfirmInfo.ownPayAmt || "0")}}</view>
- </view>
- <view
- class="{{!canPay ? 'disable btn' : 'btn'}}"
- onTap="onPay"
- >
- 去支付
- </view>
- </view>
- <view
- class="actionsheet"
- style="{{ display: actionsheetVisible ? 'block' : 'none' }}"
- >
- <view
- class="actionsheet-mask"
- onTap="handleActionsheet"
- ></view>
- <view class="actionsheet-panel">
- <view class="actionsheet-hd">
- <view class="actionsheet-hd-tt">处方明细</view>
- <view
- class="actionsheet-icon-close"
- onTap="handleActionsheet"
- ></view>
- </view>
- <view class="actionsheet-bd">
- <view a:for="{{ prescriptionList }}" class="actionsheet-box" key="{{item.title}}">
- <view class="actionsheet-box-hd">{{item.title}}</view>
- <view class="actionsheet-box-bd">
- <view
- class="actionsheet-box-item"
- key="{{ boxItem.label }}"
- a:for="{{ item.list }}"
- a:for-item="boxItem"
- >
- <view class="actionsheet-box-item-label-wrap">
- <view class="actionsheet-box-item-label">
- {{boxItem.label}}
- </view>
- <view class="actionsheet-box-item-sublabel">
- {{boxItem.subLabel}}
- </view>
- </view>
- <view
- class="{{
- boxItem.highlight
- ? 'actionsheet-box-item-value em'
- : 'actionsheet-box-item-value'
- }}"
- >
- {{boxItem.value}}
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- <view a:elif class="loading-page"></view> -->
- </view>
- </wrapper>
|