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.

orderPage.vue 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view class="oderPage">
  3. <view class="content">
  4. <image :src="`${$imgUrl}ETCcancellation/bg1.png`" mode=""></image>
  5. <view class="title">
  6. 办理成功
  7. </view>
  8. <view class="">
  9. 您办理的储蓄卡注销退费业务已生成订单
  10. </view>
  11. </view>
  12. </view>
  13. <button class="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. let model1 = reactive({
  22. uname: '输入验证码',
  23. phone: '135****9090',
  24. code: ''
  25. })
  26. const getCode = () => {
  27. console.log(123);
  28. }
  29. </script>
  30. <style>
  31. page {
  32. width: 100%;
  33. height: 100%;
  34. display: flex;
  35. flex-direction: column;
  36. }
  37. </style>
  38. <style lang="scss" scoped>
  39. .oderPage {
  40. flex: 1;
  41. width: 100%;
  42. .content {
  43. display: flex;
  44. flex-direction: column;
  45. justify-content: center;
  46. align-items: center;
  47. padding: 130rpx;
  48. image {
  49. width: 390rpx;
  50. height: 307rpx;
  51. margin-bottom: 20rpx;
  52. }
  53. .title {
  54. font-size: 38rpx;
  55. font-weight: 600;
  56. font-size: 40rpx;
  57. font-family: Microsoft YaHei UI;
  58. color: #2A2A2A;
  59. }
  60. view {
  61. margin: 15rpx 0;
  62. font-size: 28rpx;
  63. font-family: Microsoft YaHei UI;
  64. font-weight: 400;
  65. color: #717171;
  66. }
  67. }
  68. }
  69. .submit {
  70. background: linear-gradient(to left, #43A1E0 0%, #13E7C1 100%);
  71. width: 670rpx;
  72. height: 80rpx;
  73. line-height: 80rpx;
  74. font-size: 32rpx;
  75. color: #fff;
  76. border-radius: 100rpx;
  77. position: fixed;
  78. bottom: 60rpx;
  79. left: 50%;
  80. transform: translate(-50%);
  81. }
  82. </style>