Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

result.vue 976B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="content">
  3. <image :src="`${$imgUrl}ETCcancellation/bgNew.png`" mode=""></image>
  4. <view class="title">
  5. 提交成功
  6. </view>
  7. <view class="">
  8. 预计1-3日完成资料审核
  9. </view>
  10. </view>
  11. <button class="ui-btn" @click="submit">完成</button>
  12. </template>
  13. <script setup lang="ts">
  14. const submit = () => {
  15. console.log(11);
  16. uni.reLaunch({
  17. url: '/pages/index/index'
  18. })
  19. }
  20. </script>
  21. <style>
  22. page {
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. flex-direction: column;
  27. background-color: white;
  28. }
  29. </style>
  30. <style lang="scss" scoped>
  31. .content {
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: center;
  35. align-items: center;
  36. padding: 80rpx;
  37. image {
  38. width: 390rpx;
  39. height: 307rpx;
  40. margin-bottom: 20rpx;
  41. }
  42. .title {
  43. font-weight: 400;
  44. font-size: 40rpx;
  45. color: #01243A;
  46. margin: 20rpx 0 30rpx 0;
  47. }
  48. view {
  49. font-weight: 400;
  50. font-size: 28rpx;
  51. color: #999999;
  52. }
  53. }
  54. </style>