12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view class="payBox">
- <image src="../../static/img/change_suce.png" mode="widthFix" style="width: 312rpx;" alt="">
- <view>
- 支付成功
- </view>
- <!-- <view class="btn" @click="goBack">
- 返回查看退差价单
- </view> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- goBack() {
- uni.reLaunch({
- url: '../returnedInfo/index'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .payBox {
- padding-top: 30%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- font-size: 60rpx;
- font-weight: bold;
- color: #333333;
- image {
- margin-bottom: 30rpx;
- }
- .btn {
- width: 300rpx;
- line-height: 88rpx;
- background: #FFF4F3;
- border: 2rpx solid #F30100;
- border-radius: 44rpx 44rpx 44rpx 44rpx;
- text-align: center;
- color: #FF0000;
- font-size: 32rpx;
- margin-top: 60rpx;
- }
- }
- </style>
|