homeNotRent.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view class="home-not-rent-page">
  3. <view class="top-area">
  4. <image :src="IMGS.baseTitle" class="base-title" />
  5. </view>
  6. <image :src="IMGS.carImg" class="car-img" />
  7. <view :style="{ backgroundImage: `url(${IMGS.boxOmg})` }" class="desc-wrap">
  8. <swiper
  9. :interval="3000"
  10. :circular="true"
  11. indicator-color="#CED1D8"
  12. indicator-active-color="#ffffff"
  13. autoplay
  14. indicator-dots
  15. class="swiper-box"
  16. >
  17. <swiper-item v-for="(item, index) in descArr" :key="index">
  18. <view class="swiper-item">
  19. {{ item.speed }}
  20. <view class="more-btn">了解更多</view>
  21. </view>
  22. </swiper-item>
  23. </swiper>
  24. </view>
  25. <view class="options">
  26. <view class="btn btn-left">{{ $t('租赁设备') }}</view>
  27. <view class="btn btn-right">{{ $t('绑定设备') }}</view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import { QINIU_URL } from '@/common/constant'
  33. const IMGS = {
  34. baseTitle: `${QINIU_URL}Fix835oiq463VWd1QdxwhIWNDLp6`,
  35. carImg: `${QINIU_URL}FksY_ZCse57K6QrcBy52vep2WPHd`,
  36. boxOmg: `${QINIU_URL}Fi9K2vXFEO5AGoUenf8nRDtyvMiW`
  37. }
  38. export default {
  39. data() {
  40. return {
  41. IMGS,
  42. descArr: [
  43. { speed: 100 },
  44. { speed: 200 },
  45. { speed: 300 }
  46. ]
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. .home-not-rent-page {
  53. width: 750rpx;
  54. min-height: 100vh;
  55. background: linear-gradient(180deg, #EFF7FC 0%, #BAC0CC 100%);
  56. .top-area {
  57. width: 100%;
  58. height: 440rpx;
  59. display: flex;
  60. justify-content: center;
  61. background: linear-gradient(180deg, #4A5567 0%, rgba(74, 85, 103, 0) 100%);
  62. .base-title {
  63. width: 362rpx;
  64. height: 182rpx;
  65. margin: 66rpx auto 0;
  66. }
  67. }
  68. .car-img {
  69. width: 100%;
  70. height: 420rpx;
  71. margin-top: -180rpx;
  72. }
  73. .desc-wrap {
  74. width: 550rpx;
  75. height: 538rpx;
  76. background-size: 100%;
  77. margin: 0 auto;
  78. padding-bottom: 140rpx;
  79. .swiper-box {
  80. width: 100%;
  81. height: 100%;
  82. }
  83. .swiper-item {
  84. padding: 80rpx 100rpx;
  85. font-weight: bold;
  86. font-size: 64rpx;
  87. color: #FFFFFF;
  88. height: 100%;
  89. .more-btn {
  90. width: 268rpx;
  91. height: 76rpx;
  92. margin: 48rpx auto 0;
  93. background: linear-gradient( 180deg, #6E798C 0%, #7F8C9B 100%);
  94. border-radius: 40rpx;
  95. font-size: 28rpx;
  96. color: #FFFFFF;
  97. display: flex;
  98. align-items: center;
  99. justify-content: center;
  100. &::after {
  101. content: "";
  102. width: 28rpx;
  103. height: 28rpx;
  104. background: url('https://qiniu.bms16.com/Fi2Lg800Mc1MhCnvHT1DkvOEdJB1');
  105. background-size: 100%;
  106. }
  107. }
  108. }
  109. }
  110. .options {
  111. padding: 0 28rpx;
  112. display: flex;
  113. justify-content: space-between;
  114. margin-top: -100rpx;
  115. .btn {
  116. width: 336rpx;
  117. height: 98rpx;
  118. border-radius: 50rpx;
  119. border: 4rpx solid #060809;
  120. font-size: 36rpx;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. }
  125. .btn-left {
  126. color: #060809;
  127. background: rgba(255, 255, 255, 0.6);
  128. }
  129. .btn-right {
  130. color: #fff;
  131. background: #060809;
  132. }
  133. }
  134. }
  135. </style>