選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

guide.vue 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view class="hint">
  3. <view class="txt">
  4. <image :src="`${$imgUrl}bluetooth/waring.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. <view class="action">
  67. <button type="default" class="ui-btn" @click="renewal">
  68. 卡签续约
  69. </button>
  70. </view>
  71. </template>
  72. <script setup lang="ts">
  73. import {
  74. ref,
  75. reactive
  76. } from "vue";
  77. import {
  78. onLoad
  79. } from "@dcloudio/uni-app";
  80. onLoad((options) => {
  81. console.log(options)
  82. });
  83. const renewal = () => {
  84. // uni.navigateTo({
  85. // url: "/subpackage/after-sale/renewalContral/car-list"
  86. // })
  87. uni.navigateTo({
  88. url: "/subpackage/after-sale/renewalContral/result"
  89. })
  90. }
  91. </script>
  92. <style lang="scss" scoped>
  93. .renewal-contract-content{
  94. }
  95. .bg {
  96. background-color: white;
  97. margin: 0 30rpx;
  98. margin-top: 20rpx;
  99. border-radius: 10px;
  100. padding: 20rpx;
  101. overflow: hidden;
  102. .title {
  103. font-weight: 400;
  104. font-size: 30rpx;
  105. color: #01243A;
  106. }
  107. .dot_wrap {
  108. display: flex;
  109. margin: 30rpx 0;
  110. .dot_wrap_left {
  111. display: flex;
  112. flex-direction: column;
  113. align-items: center;
  114. margin-right: 20rpx;
  115. margin-top: 50rpx;
  116. .dot {
  117. width: 24rpx;
  118. height: 24rpx;
  119. background: #01243A;
  120. border-radius: 50%;
  121. }
  122. .line {
  123. height: 126rpx;
  124. background-color: transparent;
  125. border-left: 2rpx dashed #01243A;
  126. }
  127. }
  128. .dot_wrap_right {
  129. .item {
  130. background: #F7F7F7;
  131. border-radius: 12rpx;
  132. height: 120rpx;
  133. display: flex;
  134. padding: 10rpx 20rpx;
  135. box-sizing: border-box;
  136. width: 600rpx;
  137. margin-bottom: 30rpx;
  138. align-items: center;
  139. .destion {
  140. margin: 0 60rpx 0 20rpx;
  141. font-weight: 400;
  142. .destion1 {
  143. font-size: 28rpx;
  144. color: #01243A;
  145. }
  146. .destion2 {
  147. font-size: 22rpx;
  148. color: #999999;
  149. line-height: 50rpx;
  150. }
  151. }
  152. image {
  153. width: 46rpx;
  154. height: 47rpx;
  155. }
  156. }
  157. }
  158. }
  159. .des {
  160. font-weight: 400;
  161. font-size: 28rpx;
  162. color: #01243A;
  163. line-height: 56rpx;
  164. margin-top: 10rpx;
  165. text-indent: 1rem;
  166. }
  167. .cailiao {
  168. width: 100%;
  169. display: flex;
  170. flex-wrap: wrap;
  171. justify-content: space-between;
  172. .list {
  173. width: 48%;
  174. margin-top: 30rpx;
  175. view {
  176. text-align: center;
  177. margin-bottom: 15rpx;
  178. font-size: 28rpx;
  179. color: #01243A;
  180. }
  181. .icon {
  182. width: 100%;
  183. height: 190rpx;
  184. background-image: var(--bgimg);
  185. background-size: 100% 100%;
  186. background-repeat: no-repeat;
  187. }
  188. }
  189. }
  190. }
  191. .action {
  192. position: absolute;
  193. left: 0;
  194. height: 270rpx;
  195. background-color: #fff;
  196. border-radius: 30rpx 30rpx 0 0;
  197. width: 100vw;
  198. display: flex;
  199. align-items: center;
  200. justify-content: space-evenly;
  201. flex-direction: column;
  202. margin-top: 20rpx;
  203. }
  204. .need-info{
  205. display: flex;
  206. align-items: center;
  207. justify-content: space-between;
  208. .need-info-item{
  209. width: 48%;
  210. margin-top: 24rpx;
  211. display: flex;
  212. flex-direction: column;
  213. align-items: center;
  214. .tips-text{
  215. text-align: center;
  216. margin-top: 12rpx;
  217. margin-bottom: 15rpx;
  218. font-size: 28rpx;
  219. color: #01243A;
  220. }
  221. .etc-image{
  222. height: 190rpx;
  223. }
  224. }
  225. }
  226. .have-gradient{
  227. background-color: white;
  228. margin: 0 30rpx;
  229. border-radius: 10px;
  230. overflow: hidden;
  231. .have-gradient-inside{
  232. padding: 20rpx;
  233. background: linear-gradient(to bottom, #F4EEDC 0%, #FFFFFF 20%);
  234. }
  235. }
  236. .hint {
  237. margin: 20rpx 30rpx 0;
  238. padding: 18rpx 30rpx 18px;
  239. background: linear-gradient(to right, #CCB375 0%, #E7D398 100%);
  240. border-radius: 10px 10px 0 0;
  241. .txt {
  242. font-family: MicrosoftYaHei;
  243. font-size: 28rpx;
  244. color: #FFFFFF;
  245. display: flex;
  246. align-items: center;
  247. .imgs {
  248. width: 30rpx;
  249. height: 30rpx;
  250. margin-right: 10rpx;
  251. }
  252. }
  253. .grey-txt {
  254. font-size: 28rpx;
  255. color: #FFFFFF;
  256. line-height: 40rpx;
  257. margin-top: 16rpx;
  258. }
  259. }
  260. </style>