You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

result.vue 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="wrapper">
  3. <image :src="`${$imgUrl}common/reharge-success.png`" class="pic-status" mode="widthFix"></image>
  4. <view class="text-result">付款成功</view>
  5. <view class="sub-text">您办理的账户充值业务已生成订单</view>
  6. <view class="btn btn-primary" @click="view">查看订单</view>
  7. </view>
  8. </template>
  9. <script lang="ts" setup>
  10. const view = () => {
  11. }
  12. </script>
  13. <style>
  14. .wrapper {
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. text-align: center;
  19. }
  20. .text-result {
  21. font-size: 36rpx;
  22. color: #333;
  23. font-weight: 400;
  24. }
  25. .sub-text {
  26. font-size: 26rpx;
  27. font-weight: 400;
  28. color: #999999;
  29. padding-top: 40rpx;
  30. }
  31. .pic-status {
  32. width: 690rpx;
  33. height: 300rpx;
  34. margin: 98rpx 30rpx 25rpx;
  35. }
  36. .btn-primary {
  37. width: 670rpx;
  38. height: 80rpx;
  39. line-height: 80rpx;
  40. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  41. border-radius: 40rpx;
  42. font-size: 32rpx;
  43. color: #ffffff;
  44. margin: 300rpx 40rpx 0;
  45. text-align: center;
  46. }
  47. </style>