parkingInformation.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="parking-information">
  3. <view class="parking-information-slider">
  4. <image src="../../static/img/parking-info-bg.png" mode=""></image>
  5. </view>
  6. <view class="parking-information-content">
  7. <view class="parking-information-content-title">
  8. <view class="pict-left">
  9. <view class="title">甜蜜小镇D18组团停车场<text>地面</text></view>
  10. <view class="subtitle">贵阳市云岩区中天未来方舟甜蜜小镇D18组团</view>
  11. </view>
  12. <view class="pict-right">
  13. <image src="../../static/img/distance-icon.png" mode=""></image>
  14. <view class="m">238m</view>
  15. </view>
  16. </view>
  17. <view class="parking-information-content-time">
  18. <view>服务时间:<text>7:00-21:00</text></view>
  19. <view>包月费用:<text>300</text>元</view>
  20. </view>
  21. <view class="parking-information-content-cars">
  22. <view class="picc-tag">
  23. <view>120</view>
  24. <view>共有车位</view>
  25. </view>
  26. <view class="picc-tag">
  27. <view>30</view>
  28. <view>空闲车位</view>
  29. </view>
  30. </view>
  31. <view class="parking-information-content-price">
  32. <text>点击查看停车规则</text>
  33. <u-icon name="arrow-right"></u-icon>
  34. </view>
  35. <u-button class="parking-information-content-button">办理包月</u-button>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. }
  44. },
  45. methods: {
  46. }
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. @import './parkingInformation';
  51. </style>