carList.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 @click="navCarDetail" class="btn btn-left">{{ $t('租赁设备') }}</view>
  15. <view class="btn btn-right">{{ $t('绑定设备') }}</view>
  16. </view>
  17. <Confirm
  18. v-model="showConfirm"
  19. :dialog-info="{
  20. text: $t('是否确定'),
  21. showCancelButton: true
  22. }"
  23. @confirm="unbindSubmit"
  24. />
  25. </view>
  26. </template>
  27. <script>
  28. import Confirm from '@/component/comPopup/Confirm'
  29. var config = require('../../common/config.js');
  30. var app = getApp();
  31. var config = require('../../common/config.js');
  32. var common = require('../../common/common.js');
  33. var http = require('../../common/http.js');
  34. var storage = require('../../common/storage.js');
  35. export default {
  36. components: {
  37. Confirm,
  38. },
  39. data() {
  40. return {
  41. showConfirm: false,
  42. carList:[],
  43. car_sn:"",
  44. car_info:{},
  45. clickItemData:{}
  46. };
  47. }
  48. /**
  49. * 生命周期函数--监听页面加载
  50. */
  51. ,
  52. onLoad: function(options) {
  53. this.loadUserCarList()
  54. },
  55. methods: {
  56. navCarDetail(){
  57. // const me=this
  58. // uni.navigateTo({
  59. // url: '/pages/carDetail/carDetail'
  60. // })
  61. },
  62. clickItem(item){
  63. if(item.car_sn == this.car_info.car_sn) return
  64. this.clickItemData = item
  65. // console.log(item);
  66. this.showConfirm = true
  67. // uni.setStorageSync('car_info',item)
  68. // this.car_info = item
  69. },
  70. unbindSubmit(){
  71. console.log('unbindSubmit');
  72. uni.setStorageSync('car_info',this.clickItemData)
  73. this.car_info = this.clickItemData
  74. common.simpleToast('选择成功!')
  75. setTimeout(()=> {
  76. uni.switchTab({
  77. url: `/pages/index/index`,
  78. });
  79. }, 900)
  80. },
  81. loadUserCarList(){
  82. this.car_info = uni.getStorageSync('car_info') || {};
  83. const me = this
  84. common.loading()
  85. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  86. uni.hideLoading();
  87. if (resp.data.code === 200) {
  88. const carList=resp.data.data.list
  89. me.setData({
  90. carList,
  91. })
  92. } else {
  93. common.simpleToast(resp.data.msg);
  94. }
  95. })
  96. },
  97. }
  98. };
  99. </script>
  100. <style lang="scss" scoped>
  101. .car-list{
  102. padding: 24rpx;
  103. }
  104. .car-list-card{
  105. width:100%;
  106. height: 596rpx;
  107. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  108. border-radius: 40rpx;
  109. border: 6rpx solid #FFF;
  110. position: relative;
  111. padding: 30rpx;
  112. .select{
  113. position: absolute;
  114. right: 0;
  115. top: 0;
  116. width: 164rpx;
  117. height: 78rpx;
  118. text-align: center;
  119. .icon1{
  120. width: 164rpx;
  121. height: 78rpx;
  122. position: absolute;
  123. left: 0;
  124. top: 0;
  125. }
  126. text{
  127. position: relative;
  128. z-index: 1;
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 600;
  131. font-size: 28rpx;
  132. color: #FFFFFF;
  133. line-height: 28rpx;
  134. margin-top: 10rpx;
  135. display: block;
  136. }
  137. }
  138. .icon{
  139. position: absolute;
  140. width: 48rpx;
  141. height: 48rpx;
  142. left: 30rpx;
  143. top: 120rpx;
  144. }
  145. .img{
  146. width: 520rpx;
  147. height: 400rpx;
  148. display: block;
  149. margin: auto;
  150. margin-top: 40rpx;
  151. }
  152. }
  153. .car-list-card-i{
  154. background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
  155. }
  156. .car-name{
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 600;
  159. font-size: 48rpx;
  160. color: #828DA2;
  161. }
  162. .car-name-i{
  163. color: #060809;
  164. }
  165. .options {
  166. padding: 0 28rpx;
  167. display: flex;
  168. justify-content: space-between;
  169. margin-bottom: 44rpx;
  170. margin-top: 44rpx;
  171. .btn {
  172. width: 336rpx;
  173. height: 98rpx;
  174. border-radius: 50rpx;
  175. border: 4rpx solid #060809;
  176. font-size: 36rpx;
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. }
  181. .btn-left {
  182. color: #060809;
  183. background: rgba(255, 255, 255, 0.6);
  184. margin-right: 22rpx;
  185. }
  186. .btn-right {
  187. color: #fff;
  188. background: #060809;
  189. }
  190. }
  191. </style>