123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <template>
- <view class="container">
- <view class="pay-icon">
- <view class="iconfont iconqueding"></view>
- </view>
- <view class="pay-title">支付成功</view>
- <view class="pay-text">您已支付成功,您所购买的商品正在向您飞奔, 请耐心等待!</view>
- <view class="pay-handle">
- <u-button type="success" shape="circle" :ripple="true" @click="goToOrderList()" class="button1">查看订单</u-button>
- <u-button type="success" shape="circle" :ripple="true" :hair-line="false" :plain="true" @click="goToIndex()" class="button2">返回首页</u-button>
- </view>
- </view>
- </template>
- <script>
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- data() {
- return {}
- },
- onLoad(options) {},
- methods: {
- // 查看订单
- goToOrderList() {
- uni.navigateTo({
- url: '/pagesMain/orderList?type=1'
- });
- },
- // 返回首页
- goToIndex() {
- uni.switchTab({
- url: '/pages/index/index'
- });
- },
- }
- }
- </script>
- <style lang="less" scoped>
- page {
- width: 100%;
- height: 100%;
- }
- .container {
- width: 100%;
- height: 100%;
- background-color: #F3F3F3;
- position: absolute;
- .pay-icon {
- width: 100%;
- height: 120px;
- margin-top: 50px;
- float: left;
- text-align: center;
- .iconqueding {
- color: #52A63A;
- font-size: 120px;
- font-size: 240px;
- line-height: 120px;
- }
- }
- .pay-title {
- width: 100%;
- height: 20px;
- float: left;
- margin: 16px 0 20px 0;
- font-size: 16px;
- font-family: PingFang SC;
- color: #333333;
- line-height: 20px;
- text-align: center;
- }
- .pay-text {
- width: 100%;
- float: left;
- box-sizing: border-box;
- padding: 0 60px;
- font-size: 13px;
- font-family: PingFang SC;
- color: #666666;
- line-height: 22px;
- text-align: center;
- }
- .pay-handle {
- width: 230px;
- height: 100px;
- float: left;
- position: absolute;
- bottom: 60px;
- left: 50%;
- transform: translateX(-50%);
- .button1 {
- // background-color: #52A63A;
- margin-bottom: 12px;
- float: left;
- width: 100%;
- height: 34px;
- }
- .button2 {
- color: #52A63A !important;
- border-color: #52A63A !important;
- background-color: #F3F3F3 !important;
- float: left;
- width: 100%;
- height: 34px;
- }
- }
- }
- </style>
|