carList.vue 5.0 KB

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