carList.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <view class="car-list">
  3. <view v-for="(item,index) of carList" :key="index" @click="clickItem(item)" class="car-list-card" :class="{ 'car-list-card-i' : car_info.car_sn == item.car_sn}">
  4. <view class="car-name" :class="{ 'car-name-i' : car_info.car_sn == item.car_sn}">{{item.car_name}}</view>
  5. <image v-if="car_info.car_sn == item.car_sn" class="icon" src="/static/resource/images/gyq_ly.png" mode=""></image>
  6. <!-- https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX -->
  7. <image class="img" :src="item.model_images" mode="aspectFit"></image>
  8. <view v-if="car_info.car_sn == item.car_sn" class="select">
  9. <image class="icon1" src="/static/resource/images/gyq_select.png" mode=""></image>
  10. <text>当前选择</text>
  11. </view>
  12. </view>
  13. <view class="options">
  14. <view class="btn btn-left">{{ $t('租赁设备') }}</view>
  15. <view class="btn btn-right">{{ $t('绑定设备') }}</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. var config = require('../../common/config.js');
  21. var app = getApp();
  22. var config = require('../../common/config.js');
  23. var common = require('../../common/common.js');
  24. var http = require('../../common/http.js');
  25. var storage = require('../../common/storage.js');
  26. export default {
  27. data() {
  28. return {
  29. carList:[],
  30. car_sn:"",
  31. car_info:{}
  32. };
  33. }
  34. /**
  35. * 生命周期函数--监听页面加载
  36. */
  37. ,
  38. onLoad: function(options) {
  39. this.loadUserCarList()
  40. },
  41. methods: {
  42. clickItem(item){
  43. if(item.car_sn == this.car_info.car_sn) return
  44. uni.setStorageSync('car_info',item)
  45. this.car_info = item
  46. },
  47. loadUserCarList(){
  48. this.car_info = uni.getStorageSync('car_info') || {};
  49. const me = this
  50. common.loading()
  51. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  52. uni.hideLoading();
  53. if (resp.data.code === 200) {
  54. const carList=resp.data.data.list
  55. me.setData({
  56. carList,
  57. })
  58. } else {
  59. common.simpleToast(resp.data.msg);
  60. }
  61. })
  62. },
  63. }
  64. };
  65. </script>
  66. <style lang="scss" scoped>
  67. .car-list{
  68. padding: 24rpx;
  69. }
  70. .car-list-card{
  71. width:100%;
  72. height: 596rpx;
  73. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  74. border-radius: 40rpx;
  75. border: 6rpx solid #FFF;
  76. position: relative;
  77. padding: 30rpx;
  78. .select{
  79. position: absolute;
  80. right: 0;
  81. top: 0;
  82. width: 164rpx;
  83. height: 78rpx;
  84. text-align: center;
  85. .icon1{
  86. width: 164rpx;
  87. height: 78rpx;
  88. position: absolute;
  89. left: 0;
  90. top: 0;
  91. }
  92. text{
  93. position: relative;
  94. z-index: 1;
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 600;
  97. font-size: 28rpx;
  98. color: #FFFFFF;
  99. line-height: 28rpx;
  100. margin-top: 10rpx;
  101. display: block;
  102. }
  103. }
  104. .icon{
  105. position: absolute;
  106. width: 48rpx;
  107. height: 48rpx;
  108. left: 30rpx;
  109. top: 120rpx;
  110. }
  111. .img{
  112. width: 520rpx;
  113. height: 400rpx;
  114. display: block;
  115. margin: auto;
  116. margin-top: 40rpx;
  117. }
  118. }
  119. .car-list-card-i{
  120. background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
  121. }
  122. .car-name{
  123. font-family: PingFangSC, PingFang SC;
  124. font-weight: 600;
  125. font-size: 48rpx;
  126. color: #828DA2;
  127. }
  128. .car-name-i{
  129. color: #060809;
  130. }
  131. .options {
  132. padding: 0 28rpx;
  133. display: flex;
  134. justify-content: space-between;
  135. margin-bottom: 44rpx;
  136. margin-top: 44rpx;
  137. .btn {
  138. width: 336rpx;
  139. height: 98rpx;
  140. border-radius: 50rpx;
  141. border: 4rpx solid #060809;
  142. font-size: 36rpx;
  143. display: flex;
  144. align-items: center;
  145. justify-content: center;
  146. }
  147. .btn-left {
  148. color: #060809;
  149. background: rgba(255, 255, 255, 0.6);
  150. margin-right: 22rpx;
  151. }
  152. .btn-right {
  153. color: #fff;
  154. background: #060809;
  155. }
  156. }
  157. </style>