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.

vehicle-change-direction.vue 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <view>
  3. <view class="top-tip">
  4. <image src="/static/image/myx.png" mode=""></image>
  5. <view>
  6. <view style="margin-bottom: 6rpx;">使用场景</view>
  7. <view>需要变更车辆信息,包括信息修改及车牌变更。</view>
  8. </view>
  9. </view>
  10. <view class="bg" style="margin-top: -10rpx;">
  11. <view class="title"> 需要准备的材料 </view>
  12. <view class="cailiao">
  13. <view class="list" v-for="(item,index) in list">
  14. <view>{{item.name}}</view>
  15. <view class="tip">{{item.tip}}</view>
  16. <image class="icon" :src="`${$imgUrl}${item.img}`"
  17. :style="{'--bgimg':`url(${$imgUrl}issuance/bg-border.png)`}">
  18. </image>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="bg">
  24. <view class="title"> 办理流程 </view>
  25. <view class="dot_wrap">
  26. <view class="dot_wrap_left">
  27. <text class="dot"></text>
  28. <text class="line"></text>
  29. <text class="dot"></text>
  30. <text class="line"></text>
  31. <text class="dot"></text>
  32. <text class="line"></text>
  33. <text class="dot"></text>
  34. <text class="line"></text>
  35. <text class="dot"></text>
  36. <text class="line"></text>
  37. <text class="dot"></text>
  38. </view>
  39. <view class="dot_wrap_right">
  40. <view class="item">
  41. <image :src="`${$imgUrl}issuance/direction1.png`"></image>
  42. <view class="destion">
  43. <view class="destion1">选择变更车辆</view>
  44. <view class="destion2">辅助说明。</view>
  45. </view>
  46. <image :src="`${$imgUrl}issuance/direction4.png`"></image>
  47. </view>
  48. <view class="item">
  49. <image :src="`${$imgUrl}issuance/direction2.png`"></image>
  50. <view class="destion">
  51. <view class="destion1">选择变更类型</view>
  52. <view class="destion2">辅助说明</view>
  53. </view>
  54. </view>
  55. <view class="item">
  56. <image :src="`${$imgUrl}issuance/direction3.png`"></image>
  57. <view class="destion">
  58. <view class="destion1">设备预检</view>
  59. <view class="destion2">辅助说明</view>
  60. </view>
  61. </view>
  62. <view class="item">
  63. <image :src="`${$imgUrl}issuance/direction1.png`"></image>
  64. <view class="destion">
  65. <view class="destion1">资料提交</view>
  66. <view class="destion2">根据实际使用和购买产品产生。</view>
  67. </view>
  68. <image :src="`${$imgUrl}issuance/direction4.png`"></image>
  69. </view>
  70. <view class="item">
  71. <image :src="`${$imgUrl}issuance/direction2.png`"></image>
  72. <view class="destion">
  73. <view class="destion1">资料审核</view>
  74. <view class="destion2">辅助说明</view>
  75. </view>
  76. </view>
  77. <view class="item" style="margin-bottom: 0;">
  78. <image :src="`${$imgUrl}issuance/direction3.png`"></image>
  79. <view class="destion">
  80. <view class="destion1">设备升级</view>
  81. <view class="destion2">辅助说明</view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. <view class="action">
  88. <button type="default" class="ui-btn" @click="savaHandle()">
  89. 车辆信息变更
  90. </button>
  91. <button type="default" class="ui-btn-normal" @click="progressQuery()">
  92. 进度查询
  93. </button>
  94. </view>
  95. </template>
  96. <script setup lang="ts">
  97. import {navTo} from "@/utils/utils";
  98. import {
  99. ref
  100. } from "vue";
  101. const list=ref([
  102. {'name':"申请人身份证正面",'img':"issuance/sfz.png"},
  103. {'name':"车辆行驶证",'img':"issuance/xz.png"},
  104. {'name':"委托书",'img':"issuance/weituo.png","tip":"(非本人办理必传)"},
  105. {'name':"道路运输许可证",'img':"issuance/dlysxkz.png","tip":"(牵引车必传)"},
  106. {'name':"单位授权书",'img':"issuance/weituo.png","tip":"(单位必传)"},
  107. {'name':"营业执照",'img':"issuance/zhizhaoNew.png","tip":"(单位必传)"},
  108. ])
  109. const savaHandle = () => {
  110. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select`)
  111. }
  112. const progressQuery = () => {
  113. }
  114. </script>
  115. <style lang="scss" scoped>
  116. .bg {
  117. background-color: white;
  118. width: 88%;
  119. margin: 0 auto;
  120. margin-top: 20rpx;
  121. border-radius: 12px;
  122. border: 1px solid #FFFFFF;
  123. padding: 20rpx;
  124. overflow: hidden;
  125. .title {
  126. font-weight: 400;
  127. font-size: 30rpx;
  128. color: #01243A;
  129. }
  130. .dot_wrap {
  131. display: flex;
  132. margin: 30rpx 0;
  133. .dot_wrap_left {
  134. display: flex;
  135. flex-direction: column;
  136. align-items: center;
  137. margin-right: 20rpx;
  138. margin-top: 20rpx;
  139. .dot {
  140. width: 24rpx;
  141. height: 24rpx;
  142. background: #01243A;
  143. border-radius: 50%;
  144. }
  145. .line {
  146. height: 126rpx;
  147. background-color: transparent;
  148. border-left: 2rpx dashed #01243A;
  149. }
  150. }
  151. .dot_wrap_right {
  152. .item {
  153. background: #F7F7F7;
  154. border-radius: 12rpx;
  155. height: 120rpx;
  156. display: flex;
  157. padding: 10rpx 20rpx;
  158. box-sizing: border-box;
  159. width: 600rpx;
  160. margin-bottom: 30rpx;
  161. .destion {
  162. margin: 0 60rpx 0 20rpx;
  163. font-weight: 400;
  164. .destion1 {
  165. font-size: 28rpx;
  166. color: #01243A;
  167. }
  168. .destion2 {
  169. font-size: 22rpx;
  170. color: #999999;
  171. line-height: 50rpx;
  172. }
  173. }
  174. image {
  175. width: 46rpx;
  176. height: 47rpx;
  177. }
  178. }
  179. }
  180. }
  181. .cailiao {
  182. width: 100%;
  183. display: flex;
  184. flex-wrap: wrap;
  185. justify-content: space-between;
  186. .list {
  187. width: 48%;
  188. margin-top: 30rpx;
  189. .tip{
  190. font-size: 22rpx;
  191. color: #999999;
  192. }
  193. view {
  194. text-align: center;
  195. margin-bottom: 15rpx;
  196. font-size: 28rpx;
  197. color: #01243A;
  198. }
  199. .icon {
  200. width: 100%;
  201. height: 190rpx;
  202. background-image: var(--bgimg);
  203. background-size: 100% 100%;
  204. background-repeat: no-repeat;
  205. }
  206. }
  207. }
  208. }
  209. .action {
  210. position: absolute;
  211. left: 0;
  212. height: 270rpx;
  213. background-color: #fff;
  214. border-radius: 30rpx 30rpx 0 0;
  215. width: 100vw;
  216. display: flex;
  217. align-items: center;
  218. justify-content: space-evenly;
  219. flex-direction: column;
  220. margin-top: 20rpx;
  221. }
  222. .top-tip{
  223. background: linear-gradient(88deg, #CCB375 0%, #E7D398 100%);
  224. border-radius: 12rpx 12rpx 0 0;
  225. color: white;
  226. height: 90rpx;
  227. width: 88%;
  228. margin: 0 auto;
  229. padding: 30rpx 20rpx;
  230. margin-top: 30rpx;
  231. display: flex;
  232. font-size: 26rpx;
  233. color: #FFFFFF;
  234. image{
  235. width: 34rpx;
  236. height: 34rpx;
  237. margin: 0 10rpx 0 20rpx;
  238. }
  239. }
  240. </style>