123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <template>
- <view>
- <navBar name="请选择设备" type="select"/>
- <view class="car-list">
- <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' :'']">
- <view class="car-name" :class="{ 'car-name-i' : car_info.car_sn == item.car_sn}">{{item.car_name}}</view>
- <image v-if="car_info.car_sn == item.car_sn && isNearLockCheck" class="icon" src="/static/resource/images/gyq_ly.png" mode=""></image>
- <!-- https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX -->
- <image class="img" :src="item.model_images" mode="aspectFit"></image>
- <view v-if="car_info.car_sn == item.car_sn" class="select">
- <image class="icon1" src="/static/resource/images/gyq_select.png" mode=""></image>
- <text>当前选择</text>
- </view>
- </view>
- <!-- <view class="options">
- <view @click="navCarDetail" class="btn btn-left">{{ $t('租赁设备') }}</view>
- <view class="btn btn-right">{{ $t('绑定设备') }}</view>
- </view> -->
- <Confirm
- v-model="showConfirm"
- :dialog-info="{
- text: $t('是否确定'),
- showCancelButton: true
- }"
- @confirm="unbindSubmit"
- />
- </view>
- </view>
- </template>
- <script>
- import Confirm from '@/component/comPopup/Confirm'
- var config = require('../../common/config.js');
- var app = getApp();
- var config = require('../../common/config.js');
- var common = require('../../common/common.js');
- var http = require('../../common/http.js');
- var storage = require('../../common/storage.js');
- export default {
- components: {
- Confirm,
- },
- data() {
- return {
- showConfirm: false,
- carList:[],
- car_sn:"",
- car_info:{},
- clickItemData:{},
- isNearLockCheck:false
- };
- }
- /**
- * 生命周期函数--监听页面加载
- */
- ,
- onLoad: function(options) {
- this.isNearLockCheck=app.globalData.nearLockCheck
- this.loadUserCarList()
- },
- methods: {
- navCarDetail(){
- uni.switchTab({
- url: '/pages/service/service'
- })
- },
- clickItem(item){
- if(item.car_sn == this.car_info.car_sn) return
-
- this.clickItemData = item
- // console.log(item);
- this.showConfirm = true
- // uni.setStorageSync('car_info',item)
- // this.car_info = item
- },
- unbindSubmit(){
- let car_sn = this.clickItemData.car_sn
- if(!car_sn) return
- const me = this
- common.loading()
- http.postApi(config.API_FLK_CAR_DETAIL, {car_sn}, (resp) => {
- uni.hideLoading();
- if (resp.data.code === 200) {
- resp.data.data.car_sn = car_sn
- uni.setStorageSync('car_info', resp.data.data);
- me.car_info = resp.data.data
- //清空当前设备蓝牙相关
- app.globalData.nearLockCheck=false
- app.globalData.nearLockInfo={}
- app.globalData.sensitivityType=0
- app.globalData.connectionState={}
-
- me.bluetoothClose()
- common.simpleToast('切换成功!')
- setTimeout(()=> {
- uni.navigateBack({
- delta:1
- })
- }, 900)
- } else {
- common.simpleToast(resp.data.msg);
- }
- })
-
- },
- loadUserCarList(){
- this.car_info = uni.getStorageSync('car_info') || {};
- const me = this
- common.loading()
- http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
- uni.hideLoading();
- if (resp.data.code === 200) {
- const carList=resp.data.data.list
- resp.data.data.list.map(item=>{
- item.model_images = item.model_images.split(',')[0]
- })
- me.setData({
- carList,
- })
- } else {
- common.simpleToast(resp.data.msg);
- }
- })
- },
- bluetoothClose: function() {
- bluetooth.closeBluetoothAdapter();
- bluetooth.closeDevice(
- this.car_info.car_sn,
- () => {
- console.log('关闭蓝牙连接');
- // this.setData({
- // bt_loading: false
- // });
- },
- () => {}
- );
- bluetooth.offCharacteristicStateChange(this.car_info.car_sn, 'index');
- bluetooth.offConnectionStateChange(this.car_info.car_sn, 'index');
- },
- }
- };
- </script>
- <style lang="scss" scoped>
- .car-list{
- padding: 24rpx;
- }
- .car-list-card{
- width:100%;
- height: 596rpx;
- background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
- border-radius: 40rpx;
- border: 6rpx solid #FFF;
- position: relative;
- padding: 30rpx;
- margin-bottom: 20rpx;
- .select{
- position: absolute;
- right: 0;
- top: 0;
- width: 164rpx;
- height: 78rpx;
- text-align: center;
- .icon1{
- width: 164rpx;
- height: 78rpx;
- position: absolute;
- left: 0;
- top: 0;
-
- }
- text{
- position: relative;
- z-index: 1;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 28rpx;
- color: #FFFFFF;
- line-height: 28rpx;
- margin-top: 10rpx;
- display: block;
- }
- }
- .icon{
- position: absolute;
- width: 48rpx;
- height: 48rpx;
- left: 30rpx;
- top: 120rpx;
- }
- .img{
- width: 520rpx;
- height: 400rpx;
- display: block;
- margin: auto;
- margin-top: 40rpx;
- }
- }
- .car-list-card-i{
- background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
- }
- .car-name{
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 48rpx;
- color: #828DA2;
- width: 500rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .car-name-i{
- color: #060809;
- }
- .options {
- padding: 0 28rpx;
- display: flex;
- justify-content: space-between;
- margin-bottom: 44rpx;
- margin-top: 44rpx;
- .btn {
- width: 336rpx;
- height: 98rpx;
- border-radius: 50rpx;
- border: 4rpx solid #060809;
- font-size: 36rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .btn-left {
- color: #060809;
- background: rgba(255, 255, 255, 0.6);
- margin-right: 22rpx;
- }
-
- .btn-right {
- color: #fff;
- background: #060809;
- }
- }
- </style>
|