描述:支付完成

This commit is contained in:
SelfRidicule 2024-02-28 14:34:35 +08:00
parent 9a801b1ae7
commit 8926f69f99
4 changed files with 41 additions and 5 deletions

View File

@ -85,7 +85,7 @@ Page({
},
*/
{
name: "会议约",
name: "会议约",
img: "/profile/static/index/menu-hyyy.png",
path: "/pages/meeting/meetingReservation/meetingReservation"
},

View File

@ -1,3 +1,6 @@
{
"usingComponents": {}
"usingComponents": {
"van-icon": "@vant/weapp/icon/index"
},
"navigationBarTitleText": "支付结果"
}

View File

@ -1,2 +1,9 @@
<!--pages/meeting/pay/waitComplete/waitComplete.wxml-->
<text>pages/meeting/pay/waitComplete/waitComplete.wxml</text>
<view class="containerView public">
<view class="showView">
<van-icon name="checked" size="200rpx" color="#4e96f8"/>
<view class="title">支付成功</view>
</view>
<!-- 查看预约 -->
<view class="submitBtn" bind:tap="jumpComplete">查看预约</view>
</view>

View File

@ -1 +1,27 @@
/* pages/meeting/pay/waitComplete/waitComplete.wxss */
.showView{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 180rpx;
}
.showView .title{
margin-top: 20rpx;
font-size: 34rpx;
}
.submitBtn{
box-sizing: border-box;
position: absolute;
width: 600rpx;
left: 50%;
margin-left: -300rpx;
bottom: 120rpx;
border-radius: 10rpx;
padding: 20rpx;
background: #4e96f8;
color: white;
font-size: 30rpx;
text-align: center;
}