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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="oderPage">
  3. <view class="content">
  4. <image :src="`${$imgUrl}ETCcancellation/bg1.png`" mode="aspectFill"></image>
  5. <view class="title">
  6. 办理成功
  7. </view>
  8. <view class="">
  9. 您办理的业务已经办理成功
  10. </view>
  11. </view>
  12. </view>
  13. <button class="submit" @click="submit">返回首页</button>
  14. </template>
  15. <script setup lang="ts">
  16. import navBar from "./components/nav-bar.vue"
  17. import {
  18. ref,
  19. reactive
  20. } from "vue";
  21. import {
  22. navTo
  23. } from "@/utils/utils"
  24. let model1 = reactive({
  25. uname: '输入验证码',
  26. phone: '135****9090',
  27. code: ''
  28. })
  29. const getCode = () => {
  30. console.log(123);
  31. }
  32. const submit = () => {
  33. console.log(11);
  34. uni.redirectTo({
  35. });
  36. }
  37. </script>
  38. <style>
  39. page {
  40. width: 100%;
  41. height: 100%;
  42. display: flex;
  43. flex-direction: column;
  44. }
  45. </style>
  46. <style lang="scss" scoped>
  47. .oderPage {
  48. flex: 1;
  49. width: 100%;
  50. .content {
  51. display: flex;
  52. flex-direction: column;
  53. justify-content: center;
  54. align-items: center;
  55. padding: 130rpx;
  56. image {
  57. width: 390rpx;
  58. height: 307rpx;
  59. margin-bottom: 20rpx;
  60. }
  61. .title {
  62. font-size: 38rpx;
  63. font-weight: 600;
  64. font-size: 40rpx;
  65. font-family: Microsoft YaHei UI;
  66. color: #2A2A2A;
  67. }
  68. view {
  69. margin: 15rpx 0;
  70. font-size: 28rpx;
  71. font-family: Microsoft YaHei UI;
  72. font-weight: 400;
  73. color: #717171;
  74. }
  75. }
  76. }
  77. .submit {
  78. background: linear-gradient(to left, #43A1E0 0%, #13E7C1 100%);
  79. width: 670rpx;
  80. height: 80rpx;
  81. line-height: 80rpx;
  82. font-size: 32rpx;
  83. color: #fff;
  84. border-radius: 100rpx;
  85. position: fixed;
  86. bottom: 60rpx;
  87. left: 50%;
  88. transform: translate(-50%);
  89. }
  90. </style>