lockInfo.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <template>
  2. <view class="jpmain ">
  3. <view class="gradient-header">
  4. <view class="jpback">
  5. </view>
  6. </view>
  7. <view class="page-top">
  8. <!-- <view class="name">
  9. <img class="img" src="@/assets/img/lockInfo/info1.png" alt="">
  10. </view> -->
  11. <!-- <view class="name">
  12. <img class="img" src="@/assets/img/lockInfo/info2.png" alt="">
  13. </view> -->
  14. <view class="name">
  15. <img class="img" src="@/assets/img/parkingDetails/item4.png" alt="">
  16. </view>
  17. <view class="value">
  18. 未降锁
  19. </view>
  20. </view>
  21. <view class="body">
  22. <view class="page">
  23. <view class="page-main">
  24. <view class="name">
  25. 1号车位<span class="tag">公共车位</span>
  26. </view>
  27. <view class="value">
  28. <view class="jpbutton jpbutton1">
  29. <img class="img" src="@/assets/img/button/lock.png" alt="">
  30. 降锁</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="page">
  35. <view class="page-content">
  36. <view class="tip1">
  37. <view class="tip-title">温馨提示</view>
  38. <view class="step">
  39. 1、微信扫描位于充电桩立柱或站内墙面上的二维码。
  40. </view>
  41. <view class="step">
  42. 2、选择空闲车位。
  43. </view>
  44. <view class="step">
  45. 3、选择需要降锁的车位,点击“降锁”按钮。
  46. </view>
  47. <view class="step">
  48. 4、降锁完成后提示操作完成,并提示尽快停车。
  49. </view>
  50. </view>
  51. <view class="tip2">
  52. <view class="tip-title">温馨提示</view>
  53. <view class="step">1、顺利降锁后有三分钟时间,请及时就位;超时地锁自动升起,请重新扫码降锁。</view>
  54. <view class="step">2、请按降锁流程说明停车,严禁使用外力降锁。</view>
  55. <view class="step">3、地锁服务热线 400-0000-000</view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. export default {
  64. data() {
  65. return {
  66. }
  67. },
  68. methods: {
  69. }
  70. }
  71. </script>
  72. <style scoped lang="scss">
  73. /* styles.css */
  74. page {
  75. background-color: rgba(242, 244, 246, 1);
  76. }
  77. .body {
  78. padding: 32rpx;
  79. }
  80. .gradient-header{
  81. height: 0px;
  82. }
  83. .jpback {
  84. height: 800rpx;
  85. background: linear-gradient(180deg, rgba(203, 234, 255, 1) 0%, rgba(203, 234, 255, 0) 100%);
  86. }
  87. .page-top{
  88. padding :40rpx;
  89. padding-top: 120rpx;
  90. display: flex;
  91. flex-direction: column;
  92. align-items: center;
  93. .name{
  94. width: 320rpx;
  95. height: 320rpx;
  96. display: flex;
  97. align-items: flex-end;
  98. .img{
  99. width: 320rpx;
  100. }
  101. }
  102. .value{
  103. margin-top: 24rpx;
  104. font-size: 40rpx;
  105. font-weight: bold;
  106. color: #333333;
  107. }
  108. }
  109. .page {
  110. border-radius: 16rpx;
  111. background-color: rgba(255, 255, 255, 1);
  112. color: rgba(16, 16, 16, 1);
  113. padding: 32rpx;
  114. margin-bottom: 32rpx;
  115. font-size: 32rpx;
  116. color: rgb(16, 16, 16);
  117. .page-main{
  118. display: flex;
  119. justify-content: space-between;
  120. align-items: center;
  121. .name{
  122. color: rgba(51,51,51,1);
  123. font-size: 36rpx;
  124. display: flex;
  125. align-items: center;
  126. .tag{
  127. margin-left: 8rpx;
  128. color: rgba(119,119,119,1);
  129. border-radius: 8rpx;
  130. padding:1px 4rpx;
  131. font-size: 24rpx;
  132. border: 1px solid rgba(187,187,187,1);
  133. }
  134. }
  135. }
  136. .page-content{
  137. .step{
  138. margin-bottom: 16rpx;
  139. }
  140. .tip-title{
  141. color:#101010;
  142. font-size: 36rpx;
  143. font-weight: bold;
  144. margin-bottom: 24rpx;
  145. }
  146. .tip1{
  147. .step{
  148. color:#101010
  149. }
  150. border-bottom: 1px solid rgba(241,241,241,1);
  151. margin-bottom: 24rpx;
  152. padding-bottom: 8rpx;
  153. }
  154. .tip2{
  155. .step{
  156. color:#333333
  157. }
  158. }
  159. }
  160. }
  161. .jpbutton{
  162. border-radius: 100rpx;
  163. width: 160rpx;
  164. color: #fff;
  165. padding: 8rpx;
  166. display: flex;
  167. align-items: center;
  168. justify-content: center;
  169. }
  170. .jpbutton1{
  171. background-color: #2979FF;
  172. }
  173. .jpbutton2{
  174. background-color: #2979FF;
  175. .img {
  176. width: 40rpx;
  177. height: 40rpx;
  178. animation: spin 2s linear infinite; /* 添加无限旋转动画 */
  179. }
  180. /* 定义旋转动画 */
  181. @keyframes spin {
  182. from {
  183. transform: rotate(0deg); /* 起始角度 */
  184. }
  185. to {
  186. transform: rotate(360deg); /* 结束角度 */
  187. }
  188. }
  189. }
  190. .jpbutton3{
  191. background-color: #00B962;
  192. }
  193. .jpbutton4{
  194. background-color: #A7A2A2;
  195. }
  196. </style>