您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

result.vue 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. uni.navigateBack({
  12. delta: 3
  13. })
  14. }
  15. </script>
  16. <style>
  17. .wrapper {
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: center;
  21. text-align: center;
  22. }
  23. .text-result {
  24. font-size: 36rpx;
  25. color: #333;
  26. font-weight: 400;
  27. }
  28. .sub-text {
  29. font-size: 26rpx;
  30. font-weight: 400;
  31. color: #999999;
  32. padding-top: 40rpx;
  33. }
  34. .pic-status {
  35. width: 690rpx;
  36. height: 300rpx;
  37. margin: 98rpx 30rpx 25rpx;
  38. }
  39. .btn-primary {
  40. width: 670rpx;
  41. height: 80rpx;
  42. line-height: 80rpx;
  43. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  44. border-radius: 40rpx;
  45. font-size: 32rpx;
  46. color: #ffffff;
  47. margin: 300rpx 40rpx 0;
  48. text-align: center;
  49. }
  50. </style>