公寓小程序端前端代码
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.
 

53 lines
2.6 KiB

<!--subpages/OCRCard/pages/deposit/deposit.wxml-->
<navigationBar title="履约保证金" isSowArrow titleAlign="center"></navigationBar>
<view class="container-app">
<view class="card m-20">
<view class="flex flex-y items-center ">
<van-image width="115" height="100" src="/subpages/OCRCard/image/icon01.png" />
<view class="mt-24">履约保证金<text class="txt px-20">500</text>元</view>
<view class="line-dash"></view>
</view>
<view class="tit">支付方式</view>
<view class="item flex flex-sb flex-center-j items-center p20 mt-24">
<view class=" flex flex-center-j items-center">
<van-icon name="/subpages/OCRCard/image/wx_pay.png" size="20px" />
<view class="p10">微信支付</view>
</view>
<van-icon name="/subpages/OCRCard/image/ze-checked.png" size="20px" />
</view>
</view>
<view class="btn">
<van-button slot="button" block type="primary" round color="linear-gradient(to right, #0DC6C6 , #46DBD5)" bind:tap="submit">
确定支付
</van-button>
</view>
<van-popup show="{{ show }}" round bind:close="onClose" custom-style="background-image: url(http://219.146.91.110:30801/mzjzf/1749449618476_1821bg1.png)">
<view class="diag flex flex-y flex-center-j items-center">
<van-image width="94" height="94" src="/subpages/OCRCard/image/icon02.png" />
<view wx:if="{{status==1}}" class=" flex flex-y flex-center-j items-center">
<view class="tit">支付失败</view>
<view class="remk">您尚未完成支付,请尽快前往
“我的-入住记录”完成支付。</view>
<view class="butn">
<van-button slot="button" custom-style="height:70rpx;" block type="primary" round color="linear-gradient(to right, #0DC6C6 , #46DBD5)" bind:tap="toCheckInRecord">
前往支付
</van-button>
</view>
</view>
<view wx:if="{{status!=1}}" class=" flex flex-y flex-center-j items-center">
<view class="tit">您已完成入住办理</view>
<view class="remk">祝您居住愉快~</view>
<view class="butn">
<van-button slot="button" custom-style="height:70rpx;" block type="primary" round color="linear-gradient(to right, #0DC6C6 , #46DBD5)" bind:tap="goback">
返回首页
</van-button>
</view>
</view>
</view>
</van-popup>
</view>