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.

add-work-order.vue 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="bg">
  3. <view class="title_wrap"><text class="title">基本信息</text><text class="supplement">待补充</text></view>
  4. <view class="des">车牌号被上任车主办理的黔通智联发行的ETC设备占用,无法新办ETC。</view>
  5. </view>
  6. <view class="bg">
  7. <view class="title"> 需要准备的材料 </view>
  8. </view>
  9. <view class="bg">
  10. <view class="title"> 办理流程 </view>
  11. </view>
  12. <view class="action">
  13. <button type="default" class="ui-btn" @click="savaHandle()">
  14. 提交
  15. </button>
  16. </view>
  17. </template>
  18. <script setup lang="ts">
  19. import {navTo} from "@/utils/utils";
  20. const savaHandle = () => {
  21. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select`)
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. .bg {
  26. background-color: white;
  27. width: 88%;
  28. margin: 0 auto;
  29. margin-top: 20rpx;
  30. border-radius: 12px;
  31. border: 1px solid #FFFFFF;
  32. padding: 20rpx;
  33. overflow: hidden;
  34. .title_wrap{
  35. display: flex;
  36. justify-content: space-between;
  37. font-weight: 400;
  38. .title {
  39. font-size: 30rpx;
  40. color: #01243A;
  41. }
  42. .supplement{
  43. font-size: 24rpx;
  44. color: #CCB375;
  45. }
  46. }
  47. .des {
  48. font-weight: 400;
  49. font-size: 28rpx;
  50. color: #01243A;
  51. line-height: 56rpx;
  52. margin-top: 10rpx;
  53. text-indent: 1rem;
  54. }
  55. }
  56. .action {
  57. position: absolute;
  58. left: 0;
  59. height: 188rpx;
  60. background-color: #fff;
  61. border-radius: 30rpx 30rpx 0 0;
  62. width: 100vw;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. flex-direction: column;
  67. margin-top: 20rpx;
  68. }
  69. </style>