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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. <button type="default" class="ui-btn-normal" @click="progressQuery()">
  58. 进度查询
  59. </button>
  60. </view>
  61. </template>
  62. <script setup lang="ts">
  63. import {navTo} from "@/utils/utils";
  64. import {
  65. ref
  66. } from "vue";
  67. const list=ref([
  68. {'name':"申请人身份证正面",'img':"issuance/sfz.png"},
  69. {'name':"申请人身份证反面",'img':"issuance/sff.png"},
  70. {'name':"车辆行驶证主页",'img':"issuance/xz.png"},
  71. {'name':"车辆行驶证副页",'img':"issuance/xf.png"},
  72. {'name':"营业执照(单位必传)",'img':"applyCard/zhizhao.png"},
  73. ])
  74. const savaHandle = () => {
  75. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select`)
  76. }
  77. const progressQuery = () => {
  78. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select-list`)
  79. }
  80. </script>
  81. <style lang="scss" scoped>
  82. .bg {
  83. background-color: white;
  84. width: 88%;
  85. margin: 0 auto;
  86. margin-top: 20rpx;
  87. border-radius: 12px;
  88. border: 1px solid #FFFFFF;
  89. padding: 20rpx;
  90. overflow: hidden;
  91. .title {
  92. font-weight: 400;
  93. font-size: 30rpx;
  94. color: #01243A;
  95. }
  96. .dot_wrap {
  97. display: flex;
  98. margin: 30rpx 0;
  99. .dot_wrap_left {
  100. display: flex;
  101. flex-direction: column;
  102. align-items: center;
  103. margin-right: 20rpx;
  104. margin-top: 20rpx;
  105. .dot {
  106. width: 24rpx;
  107. height: 24rpx;
  108. background: #01243A;
  109. border-radius: 50%;
  110. }
  111. .line {
  112. height: 126rpx;
  113. background-color: transparent;
  114. border-left: 2rpx dashed #01243A;
  115. }
  116. }
  117. .dot_wrap_right {
  118. .item {
  119. background: #F7F7F7;
  120. border-radius: 12rpx;
  121. height: 120rpx;
  122. display: flex;
  123. padding: 10rpx 20rpx;
  124. box-sizing: border-box;
  125. width: 600rpx;
  126. margin-bottom: 30rpx;
  127. .destion {
  128. margin: 0 60rpx 0 20rpx;
  129. font-weight: 400;
  130. .destion1 {
  131. font-size: 28rpx;
  132. color: #01243A;
  133. }
  134. .destion2 {
  135. font-size: 22rpx;
  136. color: #999999;
  137. line-height: 50rpx;
  138. }
  139. }
  140. image {
  141. width: 46rpx;
  142. height: 47rpx;
  143. }
  144. }
  145. }
  146. }
  147. .des {
  148. font-weight: 400;
  149. font-size: 28rpx;
  150. color: #01243A;
  151. line-height: 56rpx;
  152. margin-top: 10rpx;
  153. text-indent: 1rem;
  154. }
  155. .cailiao {
  156. width: 100%;
  157. display: flex;
  158. flex-wrap: wrap;
  159. justify-content: space-between;
  160. .list {
  161. width: 48%;
  162. margin-top: 30rpx;
  163. view {
  164. text-align: center;
  165. margin-bottom: 15rpx;
  166. font-size: 28rpx;
  167. color: #01243A;
  168. }
  169. .icon {
  170. width: 100%;
  171. height: 190rpx;
  172. background-image: var(--bgimg);
  173. background-size: 100% 100%;
  174. background-repeat: no-repeat;
  175. }
  176. }
  177. }
  178. }
  179. .action {
  180. position: absolute;
  181. left: 0;
  182. height: 270rpx;
  183. background-color: #fff;
  184. border-radius: 30rpx 30rpx 0 0;
  185. width: 100vw;
  186. display: flex;
  187. align-items: center;
  188. justify-content: space-evenly;
  189. flex-direction: column;
  190. margin-top: 20rpx;
  191. }
  192. </style>