| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="container">
- <uni-icons class="icon" type="checkmarkempty" size="40" color="#0061FF"></uni-icons>
- 支付成功
- <view class="btn" @click="handleSelect">去选择宿舍</view>
- </view>
- </template>
- <script setup>
- const handleSelect = () => {
- uni.reLaunch({
- url: '/pages/select/select'
- })
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- padding: 200rpx 30rpx 100rpx;
- min-height: 100vh;
- .icon {
- margin-bottom: 50rpx;
- }
- .btn {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 400rpx;
- width: 610rpx;
- height: 100rpx;
- font-size: 32rpx;
- color: #fff;
- border-radius: 8rpx;
- background-color: #0061ff;
- }
- }
- </style>
|