carList.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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('是否确定'),
  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. common.loading()
  106. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  107. uni.hideLoading();
  108. if (resp.data.code === 200) {
  109. const carList=resp.data.data.list
  110. resp.data.data.list.map(item=>{
  111. item.model_images = item.model_images.split(',')[0]
  112. })
  113. me.setData({
  114. carList,
  115. })
  116. } else {
  117. common.simpleToast(resp.data.msg);
  118. }
  119. })
  120. },
  121. bluetoothClose: function() {
  122. bluetooth.closeBluetoothAdapter();
  123. bluetooth.closeDevice(
  124. this.car_info.car_sn,
  125. () => {
  126. console.log('关闭蓝牙连接');
  127. // this.setData({
  128. // bt_loading: false
  129. // });
  130. },
  131. () => {}
  132. );
  133. bluetooth.offCharacteristicStateChange(this.car_info.car_sn, 'index');
  134. bluetooth.offConnectionStateChange(this.car_info.car_sn, 'index');
  135. },
  136. }
  137. };
  138. </script>
  139. <style lang="scss" scoped>
  140. .car-list{
  141. padding: 24rpx;
  142. }
  143. .car-list-card{
  144. width:100%;
  145. height: 596rpx;
  146. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  147. border-radius: 40rpx;
  148. border: 6rpx solid #FFF;
  149. position: relative;
  150. padding: 30rpx;
  151. margin-bottom: 20rpx;
  152. .select{
  153. position: absolute;
  154. right: 0;
  155. top: 0;
  156. width: 164rpx;
  157. height: 78rpx;
  158. text-align: center;
  159. .icon1{
  160. width: 164rpx;
  161. height: 78rpx;
  162. position: absolute;
  163. left: 0;
  164. top: 0;
  165. }
  166. text{
  167. position: relative;
  168. z-index: 1;
  169. font-family: PingFangSC, PingFang SC;
  170. font-weight: 600;
  171. font-size: 28rpx;
  172. color: #FFFFFF;
  173. line-height: 28rpx;
  174. margin-top: 10rpx;
  175. display: block;
  176. }
  177. }
  178. .icon{
  179. position: absolute;
  180. width: 48rpx;
  181. height: 48rpx;
  182. left: 30rpx;
  183. top: 120rpx;
  184. }
  185. .img{
  186. width: 520rpx;
  187. height: 400rpx;
  188. display: block;
  189. margin: auto;
  190. margin-top: 40rpx;
  191. }
  192. }
  193. .car-list-card-i{
  194. background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
  195. }
  196. .car-name{
  197. font-family: PingFangSC, PingFang SC;
  198. font-weight: 600;
  199. font-size: 48rpx;
  200. color: #828DA2;
  201. width: 500rpx;
  202. text-overflow: ellipsis;
  203. overflow: hidden;
  204. white-space: nowrap;
  205. }
  206. .car-name-i{
  207. color: #060809;
  208. }
  209. .options {
  210. padding: 0 28rpx;
  211. display: flex;
  212. justify-content: space-between;
  213. margin-bottom: 44rpx;
  214. margin-top: 44rpx;
  215. .btn {
  216. width: 336rpx;
  217. height: 98rpx;
  218. border-radius: 50rpx;
  219. border: 4rpx solid #060809;
  220. font-size: 36rpx;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. }
  225. .btn-left {
  226. color: #060809;
  227. background: rgba(255, 255, 255, 0.6);
  228. margin-right: 22rpx;
  229. }
  230. .btn-right {
  231. color: #fff;
  232. background: #060809;
  233. }
  234. }
  235. </style>