123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <view class="content">
-
- <image class="success" src="../../static/money/success.png" mode=""></image>
- <text class="tit">订单支付成功</text>
- <view class="btn-group">
-
-
- <navigator url="/pages/index/index" open-type="switchTab" class="btn">返回首页</navigator>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- orderId:''
- }
- },
- onLoad(opt) {
-
- this.orderId = opt.orderid;
- },
- methods: {
-
- }
- }
- </script>
- <style lang='scss'>
- .content{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
-
- .success {
- width: 302rpx;
- height: 302rpx;
- margin-top: 100rpx;
- }
- .tit{
- font-size: 38upx;
- color: #303133;
- margin-top: 30rpx;
- }
-
- .btn {
- margin-top: 80upx;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 300upx;
- height: 80upx;
- font-size: $font-lg;
- color: #01A6A8 ;
- background-color: #f8f8f8;
- border-radius: 10upx;
- border: 1px solid #01A6A8;
- }
-
-
- </style>
|