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-failed.vue 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <view class="oderPage">
  3. <view class="content">
  4. <image src="../static/image/failed.png" mode="aspectFill"></image>
  5. <view class="title">
  6. 办理失败
  7. </view>
  8. <view class="">
  9. 您办理的业务不成功
  10. </view>
  11. </view>
  12. </view>
  13. <view class="btns">
  14. <button class="back">返回首页</button>
  15. <button class="next">继续办理</button>
  16. </view>
  17. </template>
  18. <script setup lang="ts">
  19. import navBar from "./components/nav-bar.vue"
  20. import {
  21. ref,
  22. reactive
  23. } from "vue";
  24. import {
  25. navTo
  26. } from "@/utils/utils"
  27. let model1 = reactive({
  28. uname: '输入验证码',
  29. phone: '135****9090',
  30. code: ''
  31. })
  32. const getCode = () => {
  33. console.log(123);
  34. }
  35. const submit = () => {
  36. console.log(11);
  37. uni.redirectTo({
  38. // url: '/pages/service/service'
  39. });
  40. }
  41. </script>
  42. <style>
  43. page {
  44. width: 100%;
  45. height: 100%;
  46. display: flex;
  47. flex-direction: column;
  48. }
  49. </style>
  50. <style lang="scss" scoped>
  51. .oderPage {
  52. flex: 1;
  53. width: 100%;
  54. .content {
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: center;
  58. align-items: center;
  59. padding: 130rpx;
  60. image {
  61. width: 690rpx;
  62. height: 300rpx;
  63. margin-bottom: 20rpx;
  64. }
  65. .title {
  66. font-size: 38rpx;
  67. font-weight: 600;
  68. font-size: 40rpx;
  69. font-family: Microsoft YaHei UI;
  70. color: #2A2A2A;
  71. }
  72. view {
  73. margin: 15rpx 0;
  74. font-size: 28rpx;
  75. font-family: Microsoft YaHei UI;
  76. font-weight: 400;
  77. color: #717171;
  78. }
  79. }
  80. }
  81. .btns {
  82. width: 100%;
  83. position: fixed;
  84. bottom: 60rpx;
  85. left: 50%;
  86. transform: translate(-50%);
  87. display: flex;
  88. justify-content: space-between;
  89. .back {
  90. width: 311rpx;
  91. height: 81rpx;
  92. background: #FFFFFF;
  93. border: 1px solid #DCDCDC;
  94. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
  95. border-radius: 40rpx;
  96. font-size: 32rpx;
  97. font-family: Microsoft YaHei;
  98. font-weight: 400;
  99. color: #333333;
  100. line-height: 81rpx;
  101. }
  102. .next {
  103. width: 310rpx;
  104. height: 80rpx;
  105. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  106. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
  107. border-radius: 40rpx;
  108. font-size: 32rpx;
  109. font-family: Microsoft YaHei;
  110. font-weight: 400;
  111. color: #FFFFFF;
  112. line-height: 80rpx;
  113. }
  114. }
  115. </style>