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.

rescind-carId-select-direction.vue 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <template>
  2. <view class="bg">
  3. <view class="title">使用场景</view>
  4. <view class="des">车牌号被上任车主办理的黔通智联发行的ETC设备占用,无法新办ETC。</view>
  5. </view>
  6. <view class="bg">
  7. <view class="title"> 需要准备的材料 </view>
  8. <view class="cailiao">
  9. <view class="list" v-for="(item,index) in list">
  10. <view>{{item.name}}</view>
  11. <image class="icon" :src="`${$imgUrl}${item.img}`"
  12. :style="{'--bgimg':`url(${$imgUrl}issuance/bg-border.png)`}">
  13. </image>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="bg">
  18. <view class="title"> 办理流程 </view>
  19. <view class="dot_wrap">
  20. <view class="dot_wrap_left">
  21. <text class="dot"></text>
  22. <text class="line"></text>
  23. <text class="dot"></text>
  24. <text class="line"></text>
  25. <text class="dot"></text>
  26. </view>
  27. <view class="dot_wrap_right">
  28. <view class="item">
  29. <image :src="`${$imgUrl}issuance/direction1.png`"></image>
  30. <view class="destion">
  31. <view class="destion1">解除车牌占用申请</view>
  32. <view class="destion2">业务员提交申请。</view>
  33. </view>
  34. <image :src="`${$imgUrl}issuance/direction4.png`"></image>
  35. </view>
  36. <view class="item">
  37. <image :src="`${$imgUrl}issuance/direction2.png`"></image>
  38. <view class="destion">
  39. <view class="destion1">资料审核</view>
  40. <view class="destion2">辅助说明</view>
  41. </view>
  42. </view>
  43. <view class="item" style="margin-bottom: 0;">
  44. <image :src="`${$imgUrl}issuance/direction3.png`"></image>
  45. <view class="destion">
  46. <view class="destion1">解除车牌占用</view>
  47. <view class="destion2">辅助说明</view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="action">
  54. <button type="default" class="ui-btn" @click="savaHandle()">
  55. 解除车牌占用申请
  56. </button>
  57. </view>
  58. </template>
  59. <script setup lang="ts">
  60. import {navTo} from "@/utils/utils";
  61. import {
  62. ref
  63. } from "vue";
  64. const list=ref([
  65. {'name':"申请人身份证正面",'img':"issuance/sfz.png"},
  66. {'name':"申请人身份证反面",'img':"issuance/sff.png"},
  67. {'name':"车辆行驶证主页",'img':"issuance/xz.png"},
  68. {'name':"车辆行驶证副页",'img':"issuance/xf.png"},
  69. {'name':"营业执照(单位必传)",'img':"applyCard/zhizhao.png"},
  70. ])
  71. const savaHandle = () => {
  72. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select`)
  73. }
  74. </script>
  75. <style lang="scss" scoped>
  76. .bg {
  77. background-color: white;
  78. width: 88%;
  79. margin: 0 auto;
  80. margin-top: 20rpx;
  81. border-radius: 12px;
  82. border: 1px solid #FFFFFF;
  83. padding: 20rpx;
  84. overflow: hidden;
  85. .title {
  86. font-weight: 400;
  87. font-size: 30rpx;
  88. color: #01243A;
  89. }
  90. .dot_wrap {
  91. display: flex;
  92. margin: 30rpx 0;
  93. .dot_wrap_left {
  94. display: flex;
  95. flex-direction: column;
  96. align-items: center;
  97. margin-right: 20rpx;
  98. margin-top: 20rpx;
  99. .dot {
  100. width: 24rpx;
  101. height: 24rpx;
  102. background: #01243A;
  103. border-radius: 50%;
  104. }
  105. .line {
  106. height: 126rpx;
  107. background-color: transparent;
  108. border-left: 2rpx dashed #01243A;
  109. }
  110. }
  111. .dot_wrap_right {
  112. .item {
  113. background: #F7F7F7;
  114. border-radius: 12rpx;
  115. height: 120rpx;
  116. display: flex;
  117. padding: 10rpx 20rpx;
  118. box-sizing: border-box;
  119. width: 600rpx;
  120. margin-bottom: 30rpx;
  121. .destion {
  122. margin: 0 60rpx 0 20rpx;
  123. font-weight: 400;
  124. .destion1 {
  125. font-size: 28rpx;
  126. color: #01243A;
  127. }
  128. .destion2 {
  129. font-size: 22rpx;
  130. color: #999999;
  131. line-height: 50rpx;
  132. }
  133. }
  134. image {
  135. width: 46rpx;
  136. height: 47rpx;
  137. }
  138. }
  139. }
  140. }
  141. .des {
  142. font-weight: 400;
  143. font-size: 28rpx;
  144. color: #01243A;
  145. line-height: 56rpx;
  146. margin-top: 10rpx;
  147. text-indent: 1rem;
  148. }
  149. .cailiao {
  150. width: 100%;
  151. display: flex;
  152. flex-wrap: wrap;
  153. justify-content: space-between;
  154. .list {
  155. width: 48%;
  156. margin-top: 30rpx;
  157. view {
  158. text-align: center;
  159. margin-bottom: 15rpx;
  160. font-size: 28rpx;
  161. color: #01243A;
  162. }
  163. .icon {
  164. width: 100%;
  165. height: 190rpx;
  166. background-image: var(--bgimg);
  167. background-size: 100% 100%;
  168. background-repeat: no-repeat;
  169. }
  170. }
  171. }
  172. }
  173. .action {
  174. position: absolute;
  175. left: 0;
  176. height: 188rpx;
  177. background-color: #fff;
  178. border-radius: 30rpx 30rpx 0 0;
  179. width: 100vw;
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. flex-direction: column;
  184. margin-top: 20rpx;
  185. }
  186. </style>