|
@@ -1,14 +1,14 @@
|
|
|
<template>
|
|
|
- <view class="" >
|
|
|
+ <view class="">
|
|
|
<view style="height: 148rpx;"></view>
|
|
|
- <view class="tabbar-wrap" >
|
|
|
+ <view class="tabbar-wrap">
|
|
|
<view class="tabbar">
|
|
|
<view v-for="(item, index) in tabs" :key="index" class="tab-item" @tap="routerPush(item.url)">
|
|
|
<image :src="curtTab === item.name ? item.activeIcon : item.icon" class="tab-icon"></image>
|
|
|
<text :class="['base-text', curtTab === item.name && 'checked']">{{ item.label }}</text>
|
|
|
</view>
|
|
|
<view v-if="!isScanCondeRentalCar" class="center-entrance" @tap="navToInputPages">
|
|
|
-
|
|
|
+
|
|
|
<image src="https://qiniu.bms16.com/Fm_kDVr1TIeIbbBW6-5bz0r-cECO"
|
|
|
style="width: 122rpx; height: 122rpx;"></image>
|
|
|
<!-- <img src="https://qiniu.bms16.com/FhCHLz8rQJ5mpJ6nUA4RbKiVkUOo" style="width: 120rpx; height: 24rpx;"/> -->
|
|
@@ -109,45 +109,55 @@
|
|
|
})
|
|
|
},
|
|
|
loadGeneralQRData(options) {
|
|
|
- if (('q' in options) || ('result' in options) && (options.result.indexOf(
|
|
|
- "https://zx.uwenya.cc/xcx/s") != -
|
|
|
- 1)) {
|
|
|
- var url = ''
|
|
|
- if ('q' in options) {
|
|
|
- url = decodeURIComponent(options.q);
|
|
|
- }
|
|
|
- if ('result' in options) {
|
|
|
- url = options.result
|
|
|
- }
|
|
|
- var obj = this.getUrlParams(url)
|
|
|
- if (('t' in obj) && ('d' in obj)) {
|
|
|
- if (obj.t == 1 || obj.t == 2 || obj.t == 5 || obj.t == 4) {
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/cabinetDetail/cabinetDetail?dev_id=' + obj.d + '&type=' +
|
|
|
- obj.t,
|
|
|
- })
|
|
|
- return 101
|
|
|
- }
|
|
|
- if (obj.t == 10) {
|
|
|
- this.navToInputPage(obj.d)
|
|
|
- return 106
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
+ let objOpt = this.$paramsObj(options)
|
|
|
+ if (objOpt.d) {
|
|
|
+ console.log('扫码的是机柜')
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pages/cabinetDetail/cabinetDetail?dev_id=${objOpt.d}`,
|
|
|
+ })
|
|
|
+ return
|
|
|
+ } else {
|
|
|
+ console.log('扫码的是车辆')
|
|
|
+ this.navToInputPage(options)
|
|
|
+ return
|
|
|
}
|
|
|
+ // if (options.indexOf("https://zx.uwenya.cc/xcx/s") != -1) {
|
|
|
+ // console.log('跑进来了')
|
|
|
+ // var url = ''
|
|
|
+ // if ('q' in options) {
|
|
|
+ // url = decodeURIComponent(options.q);
|
|
|
+ // }
|
|
|
+ // if ('result' in options) {
|
|
|
+ // url = options.result
|
|
|
+ // }
|
|
|
+ // var obj = this.getUrlParams(url)
|
|
|
+ // if (('t' in obj) && ('d' in obj)) {
|
|
|
+ // if (obj.t == 1 || obj.t == 2 || obj.t == 5 || obj.t == 4) {
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: '/pages/cabinetDetail/cabinetDetail?dev_id=' + obj.d + '&type=' +
|
|
|
+ // obj.t,
|
|
|
+ // })
|
|
|
+ // return 101
|
|
|
+ // }
|
|
|
+ // if (obj.t == 10) {
|
|
|
+
|
|
|
+ // return 106
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+
|
|
|
+ // }else{
|
|
|
+
|
|
|
+ // }
|
|
|
},
|
|
|
async navToInputPage(car_sn) {
|
|
|
const me = this
|
|
|
- const {
|
|
|
- userInfo = ''
|
|
|
- } = storage.getUserInfoData()
|
|
|
+ const userInfo = storage.getUserInfoData()
|
|
|
+ console.log(userInfo)
|
|
|
+ console.log(car_sn)
|
|
|
if (userInfo.status - 0 == 2) {
|
|
|
+ var location = uni.getStorageSync('user_current_location')
|
|
|
const params = await this._getParams()
|
|
|
- // var plate_number = params.carList.length != 0 && params.carList[0].license_plate_number ? params
|
|
|
- // .carList[0].license_plate_number : me.plate_number
|
|
|
-
|
|
|
if (params.carList.length == 0) {
|
|
|
- var location = uni.getStorageSync('user_current_location')
|
|
|
me.loadScanCode(location, car_sn)
|
|
|
} else {
|
|
|
if (params.order_status) {
|
|
@@ -161,38 +171,40 @@
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/orderStatus/orderStatus'
|
|
|
});
|
|
|
+ } else {
|
|
|
+ me.loadScanCode(location, car_sn)
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
+ } else {
|
|
|
+ this.$msg('用户异常')
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- loadScanCode(location, battery_sn) {
|
|
|
- const pData = {
|
|
|
- longitude: location.longitude,
|
|
|
- latitude: location.latitude,
|
|
|
- battery_sn: battery_sn
|
|
|
- }
|
|
|
+ loadScanCode(location, car_sn) {
|
|
|
const me = this
|
|
|
- http.postApi(config.API_FLK_CAR_DETAIL, pData, (resp) => {
|
|
|
+ http.postApi(config.API_FLK_CAR_DETAIL, {car_sn}, (resp) => {
|
|
|
uni.hideLoading()
|
|
|
if (resp.data.code === 200) {
|
|
|
- if (resp.data.data.online === 0 || isOffline) {
|
|
|
- common.simpleToast('此车辆已离线,请选择其他车辆')
|
|
|
- } else {
|
|
|
- if (resp.data.data.is_mine) {
|
|
|
- //直接切换当前扫码的车辆
|
|
|
- uni.setStorageSync('car_info', resp.data.data);
|
|
|
- me.$emit('changCar',resp.data.data)
|
|
|
- return
|
|
|
- } else {
|
|
|
- common.simpleToast('此车辆正在被使用!')
|
|
|
- return
|
|
|
- }
|
|
|
+ console.log(resp.data.data)
|
|
|
+ // if (resp.data.data.online === 0) {
|
|
|
+ // common.simpleToast('此车辆已离线,请选择其他车辆')
|
|
|
+ // return
|
|
|
+ // }
|
|
|
+ if (resp.data.data.is_mine) {
|
|
|
+ //直接切换当前扫码的车辆
|
|
|
+ uni.setStorageSync('car_info', resp.data.data);
|
|
|
+ me.$emit('changCar', resp.data.data)
|
|
|
+ common.simpleToast('已切换当前车辆!')
|
|
|
+ return
|
|
|
}
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pages/carDetail/carDetail?model_id=${resp.data.data.model_id}`
|
|
|
+ });
|
|
|
+ return
|
|
|
} else {
|
|
|
common.simpleToast(resp.data.msg)
|
|
|
}
|
|
@@ -255,7 +267,7 @@
|
|
|
<style scoped>
|
|
|
.tabbar-wrap {
|
|
|
position: fixed;
|
|
|
- bottom:0rpx;
|
|
|
+ bottom: 0rpx;
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
/* border-bottom: env(safe-area-inset-bottom) solid #fff; */
|