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.

rescind-carId-select-direction.vue 4.5KB

4 months ago
4 months ago
4 months ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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 class="user-type">个人</view>
  23. <view class="cailiao">
  24. <view class="list" v-for="(item,index) in person">
  25. <view>{{item.name}}</view>
  26. <image class="icon" :src="`${$imgUrl}${item.img}`"
  27. :style="{'--bgimg':`url(${$imgUrl}issuance/bg-border.png)`}">
  28. </image>
  29. </view>
  30. </view>
  31. <view class="user-type">单位</view>
  32. <view class="cailiao">
  33. <view class="list" v-for="(item,index) in company">
  34. <view>{{item.name}}</view>
  35. <image class="icon" :src="`${$imgUrl}${item.img}`"
  36. :style="{'--bgimg':`url(${$imgUrl}issuance/bg-border.png)`}">
  37. </image>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. <FixedFooter>
  43. <button type="default" class="ui-btn" style="margin-bottom: 12rpx;" @click="savaHandle()">
  44. 解除车牌占用申请
  45. </button>
  46. </FixedFooter>
  47. </template>
  48. <script setup lang="ts">
  49. import {navTo} from "@/utils/utils";
  50. import {
  51. ref
  52. } from "vue";
  53. import FixedFooter from "@/components/common/FixedFooter.vue";
  54. const list=ref([
  55. {'name':"车辆行驶证主页",'img':"issuance/xz.png"},
  56. {'name':"车辆行驶证副页",'img':"issuance/xf.png"},
  57. ])
  58. const person = ref([
  59. {'name':"车主身份证人像面",'img':"issuance/sfz.png"},
  60. {'name':"车主身份证国徽面",'img':"issuance/sff.png"},
  61. {'name':"授权书",'img':"issuance/weituo.png"},
  62. ])
  63. const company = ref([
  64. {'name':"营业执照",'img':"applyCard/zhizhao.png"},
  65. {'name':"授权书",'img':"issuance/weituo.png"},
  66. ])
  67. const savaHandle = () => {
  68. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select`)
  69. }
  70. const progressQuery = () => {
  71. navTo(`/subpackage/after-sale/rescind-carId/rescind-carId-select-list`)
  72. }
  73. </script>
  74. <style lang="scss" scoped>
  75. .bg {
  76. background-color: white;
  77. margin: 20rpx 30rpx 0;
  78. border-radius: 12px;
  79. border: 1px solid #FFFFFF;
  80. padding: 20rpx;
  81. overflow: hidden;
  82. }
  83. .title {
  84. font-weight: 400;
  85. font-size: 30rpx;
  86. color: #01243A;
  87. }
  88. .dot_wrap {
  89. display: flex;
  90. margin: 30rpx 0;
  91. .dot_wrap_left {
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. margin-right: 20rpx;
  96. margin-top: 20rpx;
  97. .dot {
  98. width: 24rpx;
  99. height: 24rpx;
  100. background: #01243A;
  101. border-radius: 50%;
  102. }
  103. .line {
  104. height: 126rpx;
  105. background-color: transparent;
  106. border-left: 2rpx dashed #01243A;
  107. }
  108. }
  109. .dot_wrap_right {
  110. .item {
  111. background: #F7F7F7;
  112. border-radius: 12rpx;
  113. height: 120rpx;
  114. display: flex;
  115. padding: 10rpx 20rpx;
  116. box-sizing: border-box;
  117. width: 600rpx;
  118. margin-bottom: 30rpx;
  119. .destion {
  120. margin: 0 60rpx 0 20rpx;
  121. font-weight: 400;
  122. .destion1 {
  123. font-size: 28rpx;
  124. color: #01243A;
  125. }
  126. .destion2 {
  127. font-size: 22rpx;
  128. color: #999999;
  129. line-height: 50rpx;
  130. }
  131. }
  132. image {
  133. width: 46rpx;
  134. height: 47rpx;
  135. }
  136. }
  137. }
  138. }
  139. .des {
  140. font-weight: 400;
  141. font-size: 28rpx;
  142. color: #01243A;
  143. line-height: 56rpx;
  144. margin-top: 10rpx;
  145. text-indent: 1rem;
  146. }
  147. .cailiao {
  148. width: 100%;
  149. display: flex;
  150. flex-wrap: wrap;
  151. justify-content: space-between;
  152. .list {
  153. width: 48%;
  154. margin-top: 30rpx;
  155. view {
  156. text-align: center;
  157. margin-bottom: 15rpx;
  158. font-size: 28rpx;
  159. color: #01243A;
  160. }
  161. .icon {
  162. width: 100%;
  163. height: 190rpx;
  164. background-image: var(--bgimg);
  165. background-size: 100% 100%;
  166. background-repeat: no-repeat;
  167. }
  168. }
  169. }
  170. .action {
  171. position: absolute;
  172. left: 0;
  173. height: 270rpx;
  174. background-color: #fff;
  175. border-radius: 30rpx 30rpx 0 0;
  176. width: 100vw;
  177. display: flex;
  178. align-items: center;
  179. justify-content: space-evenly;
  180. flex-direction: column;
  181. margin-top: 20rpx;
  182. }
  183. .user-type{
  184. color: #01243A;
  185. margin-top: 24rpx;
  186. .line{
  187. color: #999999;
  188. }
  189. }
  190. </style>