carList.vue 6.1 KB

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