carList.vue 5.9 KB

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