Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

rescind-carId-select-direction.vue 4.7KB

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