您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

vehicle-change-direction.vue 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <view>
  3. <view class="top-tip">
  4. <image :src="`${$imgUrl}issuance/vehicle1.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" :key="index">
  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/ydy1.png`"></image>
  42. <view class="destion">
  43. <view class="destion1">选择变更车辆</view>
  44. <view class="destion2">辅助说明。</view>
  45. </view>
  46. <image :src="`${$imgUrl}issuance/ydy2.png`"></image>
  47. </view>
  48. <view class="item">
  49. <image :src="`${$imgUrl}issuance/ydy3.png`"></image>
  50. <view class="destion">
  51. <view class="destion1">选择变更类型</view>
  52. <view class="destion2">辅助说明</view>
  53. </view>
  54. <image :src="`${$imgUrl}issuance/ydy4.png`"></image>
  55. </view>
  56. <view class="item">
  57. <image :src="`${$imgUrl}issuance/ydy5.png`"></image>
  58. <view class="destion">
  59. <view class="destion1">设备预检</view>
  60. <view class="destion2">辅助说明</view>
  61. </view>
  62. </view>
  63. <view class="item">
  64. <image :src="`${$imgUrl}issuance/ydy6.png`"></image>
  65. <view class="destion">
  66. <view class="destion1">资料提交</view>
  67. <view class="destion2">根据实际使用和购买产品产生。</view>
  68. </view>
  69. </view>
  70. <view class="item">
  71. <image :src="`${$imgUrl}issuance/ydy9.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/ydy7.png`"></image>
  79. <view class="destion">
  80. <view class="destion1">设备升级</view>
  81. <view class="destion2">辅助说明</view>
  82. </view>
  83. <image :src="`${$imgUrl}issuance/ydy8.png`"></image>
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. <view class="action">
  89. <button type="default" class="ui-btn" @click="savaHandle()">
  90. 车辆信息变更
  91. </button>
  92. <button type="default" class="ui-btn-normal" @click="progressQuery()">
  93. 进度查询
  94. </button>
  95. </view>
  96. </template>
  97. <script setup lang="ts">
  98. import {navTo} from "@/utils/utils";
  99. import {reactive,ref} from "vue";
  100. import {onLoad} from "@dcloudio/uni-app";
  101. const state = reactive({
  102. isVehiclePlateChange: 0,
  103. vehicleId:"",
  104. });
  105. const list=ref([
  106. {'name':"申请人身份证正面",'img':"issuance/sfz.png"},
  107. {'name':"车辆行驶证",'img':"issuance/xz.png"},
  108. {'name':"委托书",'img':"issuance/weituo.png","tip":"(非本人办理必传)"},
  109. {'name':"道路运输许可证",'img':"issuance/dlysxkz.png","tip":"(牵引车必传)"},
  110. {'name':"单位授权书",'img':"issuance/weituo.png","tip":"(单位必传)"},
  111. {'name':"营业执照",'img':"issuance/zhizhaoNew.png","tip":"(单位必传)"},
  112. ])
  113. onLoad((options) => {
  114. state.vehicleId=options.vehicleId
  115. state.isVehiclePlateChange=options.isVehiclePlateChange
  116. console.log("options",options)
  117. })
  118. const savaHandle = () => {
  119. if(state.isVehiclePlateChange==1){
  120. navTo(`/subpackage/personal-center/vehicle-change/vehicle-change-chepai?vehicleId=${state.vehicleId}&isVehiclePlateChange=${state.isVehiclePlateChange}`)
  121. }else{
  122. navTo(`/subpackage/personal-center/vehicle-change/vehicle-change-cheliangmsg-write?vehicleId=${state.vehicleId}&isVehiclePlateChange=${state.isVehiclePlateChange}`)
  123. }
  124. }
  125. const progressQuery = () => {
  126. }
  127. </script>
  128. <style lang="scss" scoped>
  129. .bg {
  130. background-color: white;
  131. width: 88%;
  132. margin: 0 auto;
  133. margin-top: 20rpx;
  134. border-radius: 12px;
  135. border: 1px solid #FFFFFF;
  136. padding: 20rpx;
  137. overflow: hidden;
  138. .title {
  139. font-weight: 400;
  140. font-size: 30rpx;
  141. color: #01243A;
  142. }
  143. .dot_wrap {
  144. display: flex;
  145. margin: 30rpx 0;
  146. .dot_wrap_left {
  147. display: flex;
  148. flex-direction: column;
  149. align-items: center;
  150. margin-right: 20rpx;
  151. margin-top: 20rpx;
  152. .dot {
  153. width: 24rpx;
  154. height: 24rpx;
  155. background: #01243A;
  156. border-radius: 50%;
  157. }
  158. .line {
  159. height: 126rpx;
  160. background-color: transparent;
  161. border-left: 2rpx dashed #01243A;
  162. }
  163. }
  164. .dot_wrap_right {
  165. .item {
  166. background: #F7F7F7;
  167. border-radius: 12rpx;
  168. height: 120rpx;
  169. display: flex;
  170. padding: 10rpx 20rpx;
  171. box-sizing: border-box;
  172. width: 600rpx;
  173. margin-bottom: 30rpx;
  174. .destion {
  175. margin: 0 60rpx 0 20rpx;
  176. font-weight: 400;
  177. .destion1 {
  178. font-size: 28rpx;
  179. color: #01243A;
  180. }
  181. .destion2 {
  182. font-size: 22rpx;
  183. color: #999999;
  184. line-height: 50rpx;
  185. }
  186. }
  187. image {
  188. width: 46rpx;
  189. height: 47rpx;
  190. }
  191. }
  192. }
  193. }
  194. .cailiao {
  195. width: 100%;
  196. display: flex;
  197. flex-wrap: wrap;
  198. justify-content: space-between;
  199. .list {
  200. width: 48%;
  201. margin-top: 30rpx;
  202. .tip{
  203. font-size: 22rpx;
  204. color: #999999;
  205. }
  206. view {
  207. text-align: center;
  208. margin-bottom: 15rpx;
  209. font-size: 28rpx;
  210. color: #01243A;
  211. }
  212. .icon {
  213. width: 100%;
  214. height: 190rpx;
  215. background-image: var(--bgimg);
  216. background-size: 100% 100%;
  217. background-repeat: no-repeat;
  218. }
  219. }
  220. }
  221. }
  222. .action {
  223. position: absolute;
  224. left: 0;
  225. height: 270rpx;
  226. background-color: #fff;
  227. border-radius: 30rpx 30rpx 0 0;
  228. width: 100vw;
  229. display: flex;
  230. align-items: center;
  231. justify-content: space-evenly;
  232. flex-direction: column;
  233. margin-top: 20rpx;
  234. }
  235. .top-tip{
  236. background: linear-gradient(88deg, #CCB375 0%, #E7D398 100%);
  237. border-radius: 12rpx 12rpx 0 0;
  238. color: white;
  239. height: 90rpx;
  240. width: 88%;
  241. margin: 0 auto;
  242. padding: 30rpx 20rpx;
  243. margin-top: 30rpx;
  244. display: flex;
  245. font-size: 26rpx;
  246. color: #FFFFFF;
  247. image{
  248. width: 34rpx;
  249. height: 34rpx;
  250. margin: 0 10rpx 0 20rpx;
  251. }
  252. }
  253. </style>