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.

guide.vue 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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">卡签一年内即将到期,延长卡签使用时间</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="need-info">
  15. <view class="need-info-item">
  16. <image class="etc-image" :src="`${$imgUrl}issuance/cardPicture.png`" mode="heightFix"></image>
  17. <view class="tips-text">ETC卡(卡续期、卡签续期时必用)</view>
  18. </view>
  19. <view class="need-info-item">
  20. <image class="etc-image" :src="`${$imgUrl}issuance/obuPicture.png`" mode="heightFix"></image>
  21. <view class="tips-text">ETC设备(签续期、卡签续期时必用)</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="bg">
  27. <view class="title"> 办理流程 </view>
  28. <view class="dot_wrap">
  29. <view class="dot_wrap_left">
  30. <text class="dot"></text>
  31. <text class="line"></text>
  32. <text class="dot"></text>
  33. <text class="line"></text>
  34. <text class="dot"></text>
  35. <text class="line"></text>
  36. <text class="dot"></text>
  37. </view>
  38. <view class="dot_wrap_right">
  39. <view class="item">
  40. <image :src="`${$imgUrl}issuance/direction1.png`"></image>
  41. <view class="destion">
  42. <view class="destion1">选择待续期车辆</view>
  43. </view>
  44. </view>
  45. <view class="item">
  46. <image :src="`${$imgUrl}issuance/direction2.png`"></image>
  47. <view class="destion">
  48. <view class="destion1">选择续期类型</view>
  49. </view>
  50. </view>
  51. <view class="item">
  52. <image :src="`${$imgUrl}issuance/direction2.png`"></image>
  53. <view class="destion">
  54. <view class="destion1">连接设备蓝牙或NFC</view>
  55. </view>
  56. </view>
  57. <view class="item" style="margin-bottom: 0;">
  58. <image :src="`${$imgUrl}issuance/direction3.png`"></image>
  59. <view class="destion">
  60. <view class="destion1">续期成功</view>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <FixedFooter>
  67. <button type="default" class="ui-btn" @click="renewal">
  68. 卡签续约
  69. </button>
  70. </FixedFooter>
  71. </template>
  72. <script setup lang="ts">
  73. import FixedFooter from '@/components/common/FixedFooter.vue'
  74. import {
  75. ref,
  76. reactive
  77. } from "vue";
  78. import {
  79. onLoad
  80. } from "@dcloudio/uni-app";
  81. const state = reactive({
  82. vehicleId: ""
  83. });
  84. onLoad(({vehicleId}) => {
  85. if (vehicleId) {
  86. state.vehicleId = vehicleId
  87. }
  88. });
  89. const renewal = () => {
  90. // uni.navigateTo({
  91. // url: `/subpackage/after-sale/renewalContral/car-detail?vehicleId=${state.vehicleId}`
  92. // })
  93. uni.navigateTo({
  94. url: `/subpackage/after-sale/activation-once-again/select-car?type=4`
  95. })
  96. }
  97. </script>
  98. <style lang="scss" scoped>
  99. .renewal-contract-content{
  100. }
  101. .bg {
  102. background-color: white;
  103. margin: 0 30rpx;
  104. margin-top: 20rpx;
  105. border-radius: 10px;
  106. padding: 20rpx;
  107. overflow: hidden;
  108. .title {
  109. font-weight: 400;
  110. font-size: 30rpx;
  111. color: #01243A;
  112. }
  113. .dot_wrap {
  114. display: flex;
  115. margin: 30rpx 0;
  116. .dot_wrap_left {
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. margin-right: 20rpx;
  121. margin-top: 50rpx;
  122. .dot {
  123. width: 24rpx;
  124. height: 24rpx;
  125. background: #01243A;
  126. border-radius: 50%;
  127. }
  128. .line {
  129. height: 126rpx;
  130. background-color: transparent;
  131. border-left: 2rpx dashed #01243A;
  132. }
  133. }
  134. .dot_wrap_right {
  135. .item {
  136. background: #F7F7F7;
  137. border-radius: 12rpx;
  138. height: 120rpx;
  139. display: flex;
  140. padding: 10rpx 20rpx;
  141. box-sizing: border-box;
  142. width: 600rpx;
  143. margin-bottom: 30rpx;
  144. align-items: center;
  145. .destion {
  146. margin: 0 60rpx 0 20rpx;
  147. font-weight: 400;
  148. .destion1 {
  149. font-size: 28rpx;
  150. color: #01243A;
  151. }
  152. .destion2 {
  153. font-size: 22rpx;
  154. color: #999999;
  155. line-height: 50rpx;
  156. }
  157. }
  158. image {
  159. width: 46rpx;
  160. height: 47rpx;
  161. }
  162. }
  163. }
  164. }
  165. .des {
  166. font-weight: 400;
  167. font-size: 28rpx;
  168. color: #01243A;
  169. line-height: 56rpx;
  170. margin-top: 10rpx;
  171. text-indent: 1rem;
  172. }
  173. .cailiao {
  174. width: 100%;
  175. display: flex;
  176. flex-wrap: wrap;
  177. justify-content: space-between;
  178. .list {
  179. width: 48%;
  180. margin-top: 30rpx;
  181. view {
  182. text-align: center;
  183. margin-bottom: 15rpx;
  184. font-size: 28rpx;
  185. color: #01243A;
  186. }
  187. .icon {
  188. width: 100%;
  189. height: 190rpx;
  190. background-image: var(--bgimg);
  191. background-size: 100% 100%;
  192. background-repeat: no-repeat;
  193. }
  194. }
  195. }
  196. }
  197. .action {
  198. position: absolute;
  199. left: 0;
  200. height: 270rpx;
  201. background-color: #fff;
  202. border-radius: 30rpx 30rpx 0 0;
  203. width: 100vw;
  204. display: flex;
  205. align-items: center;
  206. justify-content: space-evenly;
  207. flex-direction: column;
  208. margin-top: 20rpx;
  209. }
  210. .need-info{
  211. display: flex;
  212. align-items: center;
  213. justify-content: space-between;
  214. .need-info-item{
  215. width: 48%;
  216. margin-top: 24rpx;
  217. display: flex;
  218. flex-direction: column;
  219. align-items: center;
  220. .tips-text{
  221. text-align: center;
  222. margin-top: 12rpx;
  223. margin-bottom: 15rpx;
  224. font-size: 28rpx;
  225. color: #01243A;
  226. }
  227. .etc-image{
  228. height: 190rpx;
  229. }
  230. }
  231. }
  232. </style>