carList.vue 6.0 KB

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