carList.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <view>
  3. <navBar :name="$t('请选择设备')" 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>{{ $t('当前选择') }}</text>
  16. </view>
  17. </view>
  18. <!-- <view class="options">
  19. <view @click="navCarDetail" class="btn btn-left">{{ $t('{{ $t('租赁设备') }}') }}</view>
  20. <view class="btn btn-right">{{ $t('{{ $t('绑定设备') }}') }}</view>
  21. </view> -->
  22. <!-- <Confirm
  23. v-model="showConfirm"
  24. :dialog-info="{
  25. text: $t('{{ $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 config = require('../../common/config.js');
  37. var common = require('../../common/common.js');
  38. var http = require('../../common/http.js');
  39. var storage = require('../../common/storage.js');
  40. var bluetooth = require('@/common/bluetooth.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. const app = getApp();
  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. const app = getApp();
  91. //清空当前设备蓝牙相关
  92. app.globalData.nearLockCheck=false
  93. app.globalData.nearLockInfo={}
  94. app.globalData.sensitivityType=0
  95. app.globalData.connectionState={}
  96. me.bluetoothClose()
  97. common.simpleToast(this.$t('切换成功!'))
  98. setTimeout(()=> {
  99. uni.navigateBack({
  100. delta:1
  101. })
  102. }, 900)
  103. } else {
  104. common.simpleToast(resp.data.msg);
  105. }
  106. })
  107. },
  108. loadUserCarList(){
  109. this.car_info = uni.getStorageSync('car_info') || {};
  110. const me = this
  111. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  112. if (resp.data.code === 200) {
  113. const carList=resp.data.data.list
  114. resp.data.data.list.map(item=>{
  115. item.model_images = item.model_images.split(',')[0]
  116. })
  117. me.setData({
  118. carList,
  119. })
  120. } else {
  121. common.simpleToast(resp.data.msg);
  122. }
  123. })
  124. },
  125. bluetoothClose: function() {
  126. bluetooth.closeBluetoothAdapter();
  127. bluetooth.closeDevice(
  128. this.car_info.car_sn,
  129. () => {
  130. console.log(this.$t('关闭蓝牙连接'));
  131. // this.setData({
  132. // bt_loading: false
  133. // });
  134. },
  135. () => {}
  136. );
  137. bluetooth.offCharacteristicStateChange(this.car_info.car_sn, 'index');
  138. bluetooth.offConnectionStateChange(this.car_info.car_sn, 'index');
  139. },
  140. }
  141. };
  142. </script>
  143. <style lang="scss" scoped>
  144. .car-list{
  145. padding: 24rpx;
  146. }
  147. .car-list-card{
  148. width:100%;
  149. height: 596rpx;
  150. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  151. border-radius: 40rpx;
  152. border: 6rpx solid #FFF;
  153. position: relative;
  154. padding: 30rpx;
  155. margin-bottom: 20rpx;
  156. .select{
  157. position: absolute;
  158. right: 0;
  159. top: 0;
  160. width: 164rpx;
  161. height: 78rpx;
  162. text-align: center;
  163. .icon1{
  164. width: 164rpx;
  165. height: 78rpx;
  166. position: absolute;
  167. left: 0;
  168. top: 0;
  169. }
  170. text{
  171. position: relative;
  172. z-index: 1;
  173. font-family: PingFangSC, PingFang SC;
  174. font-weight: 600;
  175. font-size: 28rpx;
  176. color: #FFFFFF;
  177. line-height: 28rpx;
  178. margin-top: 10rpx;
  179. display: block;
  180. }
  181. }
  182. .icon{
  183. position: absolute;
  184. width: 48rpx;
  185. height: 48rpx;
  186. left: 30rpx;
  187. top: 120rpx;
  188. }
  189. .img{
  190. width: 520rpx;
  191. height: 400rpx;
  192. display: block;
  193. margin: auto;
  194. margin-top: 40rpx;
  195. }
  196. }
  197. .car-list-card-i{
  198. background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
  199. }
  200. .car-name{
  201. font-family: PingFangSC, PingFang SC;
  202. font-weight: 600;
  203. font-size: 36rpx;
  204. color: #828DA2;
  205. width: 460rpx;
  206. text-overflow: ellipsis;
  207. overflow: hidden;
  208. white-space: nowrap;
  209. }
  210. .car-name-i{
  211. color: #060809;
  212. }
  213. .options {
  214. padding: 0 28rpx;
  215. display: flex;
  216. justify-content: space-between;
  217. margin-bottom: 44rpx;
  218. margin-top: 44rpx;
  219. .btn {
  220. width: 336rpx;
  221. height: 98rpx;
  222. border-radius: 50rpx;
  223. border: 4rpx solid #060809;
  224. font-size: 36rpx;
  225. display: flex;
  226. align-items: center;
  227. justify-content: center;
  228. }
  229. .btn-left {
  230. color: #060809;
  231. background: rgba(255, 255, 255, 0.6);
  232. margin-right: 22rpx;
  233. }
  234. .btn-right {
  235. color: #fff;
  236. background: #060809;
  237. }
  238. }
  239. </style>