123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <wrapper>
- <!-- 新页面 -->
- <View class="ybv2">
- <View class="page-index" a:if="{{ canPay }}">
- <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">342.23元</View>
- </View>
- <View class="box-bd">
- <View class="box-item">
- <View class="box-bd-label">医保基金支付</View>
- <View class="box-bd-value">233元</View>
- </View>
- <View class="box-item">
- <View class="box-bd-label">个人帐户支付</View>
- <View class="box-bd-value">233元</View>
- </View>
- <View class="box-item">
- <View class="box-bd-label">其他抵扣金额</View>
- <View class="box-bd-value">233元</View>
- </View>
- </View>
- <View class="box-ft">
- <View class="box-ft-label">现金支付</View>
- <View class="box-ft-value">56元</View>
- </View>
- <View
- class="box-append"
- onTap="handleActionsheet"
- >
- 查看明细
- </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">¥5823</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>
|