選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

result.vue 1.1KB

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