郭宇琦 1 hafta önce
ebeveyn
işleme
1d7f4b4dc7

+ 1 - 1
.hbuilderx/launch.json

@@ -20,7 +20,7 @@
         },
         {
             "openVueDevtools" : false,
-            "playground" : "standard",
+            "playground" : "custom",
             "type" : "uni-app:app-android"
         },
         {

+ 2 - 1
common/config_gyq.js

@@ -54,7 +54,8 @@ var config = {
 	API_FLK_CABINET_NEAR_LIST: api_web_url +'?r=flk/cabinet/near-list',
 	//忘记密码
 	API_FLK_CABINET_RESET_PASSWORD: api_web_url +'?r=flk/account/reset-password',
-	
+	//车辆电池列表
+	API_CAR_BATTERY_LIST: api_web_url +'?r=flk/car/battery-list',
 	//取消订单
 	API_FLK_ORDER_CANCEL_PAY: api_web_url +'?r=flk/order/cancel-pay',
 	//激活车辆(绑定设备): 

+ 13 - 13
component/scanCabBtn/scanBtn.vue

@@ -247,19 +247,19 @@
 				res = res[1]
 				this.loadGeneralQRData(res)
 				
-				if ('path' in res && res.path) {
-					if (res.path.split('%26devid%3D').length > 1) {
-						cabinet_dev_id = res.path.split('%26devid%3D')[1].split('%26')[0];
-					} else if (res.path.split('&devid=').length > 1) {
-						cabinet_dev_id = res.path.split('&devid=')[1].split('&')[0];
-					}
-				}
-				if (cabinet_dev_id != '') {
-					this.scan_dev_id = cabinet_dev_id
-					this.loadNowCabinetDetail(cabinet_dev_id)
-				} else {
-					common.simpleToast("未找到相应的机柜")
-				}
+				// if ('path' in res && res.path) {
+				// 	if (res.path.split('%26devid%3D').length > 1) {
+				// 		cabinet_dev_id = res.path.split('%26devid%3D')[1].split('%26')[0];
+				// 	} else if (res.path.split('&devid=').length > 1) {
+				// 		cabinet_dev_id = res.path.split('&devid=')[1].split('&')[0];
+				// 	}
+				// }
+				// if (cabinet_dev_id != '') {
+				// 	this.scan_dev_id = cabinet_dev_id
+				// 	this.loadNowCabinetDetail(cabinet_dev_id)
+				// } else {
+				// 	common.simpleToast("未找到相应的机柜")
+				// }
 				
 			},
 			sacnBtnReturn() {

+ 82 - 115
mixin/index.js

@@ -1,154 +1,120 @@
 // mixins/countdownMixin.js
 var bluetooth = require('@/common/bluetooth.js');
-import {
-	getFunctionTag,
-	setFunctionTag,
-	getUserCurrentLocation
-} from '@/common/storage.js';
-// var app = getApp();
+import {getFunctionTag,setFunctionTag,getUserCurrentLocation} from '@/common/storage.js';
+var app = getApp();
 var config = require('@/common/config.js');
 var common = require('@/common/common.js');
 var http = require('@/common/http.js');
 import i18n from '@/locale/index.js'
 export default {
-	data() {
-		return {
-			myLocation:{},
-			carOnline: false,
-			statusBarHeight: 0,
-			popText: '',
-			cmdType: '',
-			popupControlShow: false
-		};
-	},
-	onLoad(){
-		this.myLocation = getUserCurrentLocation()
-		this.locationMixin()
-		this.checkLocationPermission()
-	},
-	mounted() {
-		this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
-	},
-	methods: {
-		async locationMixin(){
-			let data = await this.$location()
-			this.myLocation = {
-				longitude: data.longitude,
-				latitude: data.latitude
-			}
-		},
-		async checkLocationPermission() {
-			let data = await this.$checkLocationPermission()
-			console.log('权限获取')
-			console.log(data)
-		},
-		tapOpenControl(e) {
-			const _carOnline = uni.getStorageSync('car_info').online != 0 //在线
+  data() {
+    return {
+      carOnline: false, 
+	  statusBarHeight:0,
+	  popText:'',
+	  cmdType:'',
+	  myLocation:{},
+	  popupControlShow:false
+    };
+  },
+  onload(){
+	 this.myLocation = getUserCurrentLocation()
+	 this.myLocation = this.$location()
+  },
+   mounted(){
+  	  this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
+  },
+  methods: {
+		tapOpenControl(e){
+			console.log(111);
+			const _carOnline=uni.getStorageSync('car_info').online!=0 //在线
 			console.log(this.popupControlShow);
-			const {
-				name,
-				type
-			} = e
+			const {name,type}=e
 			this.setData({
-				carOnline: _carOnline,
-				popText: name,
-				cmdType: type,
-				popupControlShow: true
+				carOnline:_carOnline,
+				popText:name,
+				cmdType:type,
+				popupControlShow:true
 			})
 			console.log(this.popupControlShow);
 		},
-		changClick(tab) {
-			const typeArr = ['tirePressure', 'batteryInfo', 'navigation']
-			const isOther = typeArr.findIndex(t => t === tab.type) !== -1
-			console.log('isOther', isOther);
-			if (isOther) {
-				const {
-					name,
-					type
-				} = tab
+		changClick(tab){
+			const typeArr=['tirePressure','batteryInfo','navigation']
+			const isOther=typeArr.findIndex(t => t === tab.type)!==-1
+			console.log('isOther',isOther);
+			if(isOther){
+				const {name,type}=tab
 				this.setData({
-					popText: name,
-					cmdType: type,
+					popText:name,
+					cmdType:type,
 				})
 				this.tapBlueToothCmd()
-			} else {
+			}else{
 				this.tapOpenControl(tab)
 			}
 		},
-		closePopup() {
-			this.popupControlShow = false
+		closePopup(){
+			this.popupControlShow=false
 		},
-		tapBlueToothCmd(_,type){
+		tapBlueToothCmd(isCarLocation=false){
 			const car_info= uni.getStorageSync('car_info');
-			const isCarLocation = type
 			if(this.cmdType=='batteryInfo'){
 				uni.navigateTo({
-					url: `/pages/batteryDetail/batteryDetail`
+					url:`/pages/batteryDetail/batteryDetail`
 				})
-			} else if (this.cmdType == 'navigation') {
+			}else if(this.cmdType=='navigation'){
 				const {
 					address,
 					latitude,
 					longitude,
 					car_name
-				} = car_info
+				} =car_info
 				uni.openLocation({
 					latitude: latitude - 0,
 					longitude: longitude - 0,
 					scale: 15,
 					name: car_name,
 					address: address,
-					success: function(res) {},
+					success: function (res) {},
 				})
 				//获取胎压
-			} else if (this.cmdType == 'tirePressure') {
+			}else if(this.cmdType=='tirePressure'){
 				this.bluetoothCmd()
-			} else {
+			}else{
 				// 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
 				if (this.carOnline) {
-					if (this.cmdType == 'turnOnOrOff') {
-						const switchType = this.contrilList.find(item => item.isTurnOn)
-						const pData = {
-							car_sn: car_info.car_sn,
-							switch: switchType
+					if(this.cmdType=='turnOnOrOff'){
+						const switchType=this.contrilList.find(item => item.isTurnOn)
+						const pData={
+							car_sn:car_info.car_sn,
+							switch:switchType
 						}
-						const me = this
+						const me=this
 						common.loading();
 						http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
 							uni.hideLoading();
 							if (resp.data.code === 200) {
 								common.simpleToast(me.popText + '成功');
-								const activeTag = me.contrilList.map(item => {
-									item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
-									item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
+								const activeTag=me.contrilList.map(item=>{
+									item.isTurnOn=(item.isTurnOn==1)?0:1
+									item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
 									return item
 								})
-								const tag = getFunctionTag().tag
-								setFunctionTag({
-									activeTag,
-									tag
-								})
-
+								const tag=getFunctionTag().tag
+								setFunctionTag({activeTag,tag})
+								
 							} else {
 								common.simpleToast(resp.data.msg);
 							}
 						});
-					} else {
-						const testArr = [{
-								type: 'findCar',
-								opt_type: 1
-							},
-							{
-								type: 'openSeatBag',
-								opt_type: 0
-							},
-							{
-								type: 'openTailBox',
-								opt_type: 2
-							},
-						]
-						const pData = testArr.find(i => i.type === this.cmdType)
-						const me = this
+					}else{
+						const testArr=[
+							{type:'findCar',opt_type:1},
+							{type:'openSeatBag',opt_type:0},
+							{type:'openTailBox',opt_type:2},
+							]
+						const pData = testArr.find(i=>i.type===this.cmdType)
+						const me=this
 						common.loading();
 						http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
 							uni.hideLoading();
@@ -163,19 +129,18 @@ export default {
 					this.bluetoothCmd(isCarLocation)
 				}
 			}
-			this.popupControlShow = false
+			this.popupControlShow=false
 		},
-		bluetoothCmd(isCarLocation) {
-			const me = this
-			const car_info = uni.getStorageSync('car_info');
-			const app = getApp();
+		bluetoothCmd(isCarLocation){
+			const me=this
+			const car_info= uni.getStorageSync('car_info');
 			//蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
-			const isBluetoothConnect = app.globalData.nearLockCheck
+			const isBluetoothConnect = app.globalData.connectionStateChangeFunc[car_info.car_sn]
 			if(isBluetoothConnect){
 				const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
 				console.log(isTurnOn,this.cmdType,this.contrilList);
 				const bluetoothCommands = {
-					'turnOnOrOff': isTurnOn ? bluetooth.turnOnCar : bluetooth.turnOffCar,
+					'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
 					'findCar': bluetooth.findCarCmd,
 					'openSeatBag': bluetooth.openCarSeat,
 					'openTailBox': bluetooth.openCarTrunk,
@@ -187,13 +152,13 @@ export default {
 				if (command) {
 					command(car_sn, () => {
 						uni.hideLoading();
-						if (this.cmdType == 'openSeatBag' || this.cmdType == 'openTailBox') {
+						if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
 							common.simpleToast('操作成功');
 						}
 						console.log(`发送${this.popText}指令结束`);
 					});
 				}
-			} else {
+			}else{
 				uni.showModal({
 					title: '提示',
 					content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
@@ -202,15 +167,14 @@ export default {
 					confirmText: '确定',
 					success: function(res) {
 						if (res.confirm) {
-							console.log(isCarLocation,'test111');
 							if(isCarLocation){
 								uni.switchTab({
-									url: '/pages/index/index'
+									url:'/pages/index/index'
 								})
-							} else {
+							}else{
 								me.$emit('toBluetooth')
 							}
-
+							
 						}
 					},
 					fail: function(res) {},
@@ -219,5 +183,8 @@ export default {
 			}
 		}
 	},
-	beforeDestroy() {},
-};
+
+ 
+  beforeDestroy() {
+  },
+};

+ 22 - 28
pages/batteryDetail/batteryDetail.vue

@@ -1,43 +1,23 @@
 <template>
 	<view class="battery-detail-main">
 		<navBar name="电池信息"  bgColor="#CFD1DE"></navBar>
-		<view class=" quantity-count">65<text class="quantity-text">%</text></view>
-		<view class="battery-list-view">
+		<view class=" quantity-count">{{electricQuantity || 0}}<text class="quantity-text">%</text></view>
+		<view v-for="(item,index) of list" :key="index" class="battery-list-view">
 			<view class="battery-list flex-row flex-between">
-				<view class="battery-name">No.1电池</view>
-				<view class="battery-id">MAC ID:0168802221</view>
+				<view class="battery-name">No.{{index + 1}}电池</view>
+				<view class="battery-id">MAC ID:{{item.battery_sn}}</view>
 			</view>
 			<view class="flex-row flex-around">
 				<view class="battery-device-info">
-					<view class="quantity-info">44 <text class="quantity-text-1">%</text></view>
+					<view class="quantity-info">{{item.electric_quantity || 0}} <text class="quantity-text-1">%</text></view>
 					<view class="battery-info-text">剩余电量</view>
 				</view>
 				<view class="battery-device-info">
-					<view class="quantity-info">44 <text class="quantity-text-1">%</text></view>
+					<view class="quantity-info">{{item.voltage || 0}}<text class="quantity-text-1">%</text></view>
 					<view class="battery-info-text">电压</view>
 				</view>
 				<view class="battery-device-info">
-					<view class="quantity-info">44 <text class="quantity-text-1">%</text></view>
-					<view class="battery-info-text">温度</view>
-				</view>
-			</view>
-		</view>
-		<view class="battery-list-view">
-			<view class="battery-list flex-row flex-between">
-				<view class="battery-name">No.1电池</view>
-				<view class="battery-id">MAC ID:0168802221</view>
-			</view>
-			<view class="flex-row flex-around">
-				<view class="battery-device-info">
-					<view class="quantity-info">44 <text class="quantity-text-1">%</text></view>
-					<view class="battery-info-text">剩余电量</view>
-				</view>
-				<view class="battery-device-info">
-					<view class="quantity-info">44 <text class="quantity-text-1">%</text></view>
-					<view class="battery-info-text">电压</view>
-				</view>
-				<view class="battery-device-info">
-					<view class="quantity-info">44 <text class="quantity-text-1">%</text></view>
+					<view class="quantity-info">{{item.battery_temp || 0}} <text class="quantity-text-1">%</text></view>
 					<view class="battery-info-text">温度</view>
 				</view>
 			</view>
@@ -51,6 +31,8 @@
 	export default {
 		data() {
 			return {
+				electricQuantity:0,
+				car_sn:'',
 				list:[]
 			};
 		}
@@ -59,9 +41,21 @@
 		 */
 		,
 		onLoad: function(options) {
+			this.car_sn = uni.getStorageSync('car_info').car_sn || '';
+			this.batteryListFn()
 		},
 		methods: {
-
+			async batteryListFn(){
+				let {data} = await http.postApi(config.API_CAR_BATTERY_LIST,{car_sn:this.car_sn})
+				let electric_quantity = 0
+				data.data.list.map(item=>{
+					electric_quantity += Number(item.electric_quantity)
+				})
+				console.log((electric_quantity / data.data.list.length).toFixed(0))
+				this.electricQuantity = (electric_quantity / data.data.list.length).toFixed(0) || 0
+				this.electricQuantity = this.electricQuantity != 'NaN' ? this.electricQuantity : 0
+				this.list = data.data.list
+			}
 		}
 	};
 </script>

+ 1 - 1
pages/carFunctionSet/more.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="zx-container car-function-set-more">
 		<navBar name="更多功能" left="0"></navBar>
-		<view class="fn-wrap">
+		<view style='margin-top: 20rpx;' class="fn-wrap">
 			<view class="title">
 				{{ $t('固定导航栏') }}
 				<text class="sort-num">{{ realActiveTabs.length }} / {{ MAX_TAB_LEN }}</text>

+ 2 - 1
pages/orderStatus/orderStatus.vue

@@ -212,7 +212,7 @@
 		<view class="inset-bottom"></view>
 		<view class="payment-info flex-row flex-between">
 			<view>
-				<view v-if="(orderInfo.order_status == 1 || orderInfo.pay_status == 5) && orderInfo.order_type != 3" class="cancel" @tap="clickCancel">结束订单</view>
+				<view v-if="(orderInfo.order_status == 0 ||orderInfo.order_status == 1 || orderInfo.pay_status == 5 || orderInfo.pay_status == 0) && orderInfo.order_type != 3" class="cancel" @tap="clickCancel">结束订单</view>
 			</view>
 			<view class="flex-row">
 				<view v-if="orderInfo.order_status == 1" @tap="navToScan" class="sesame-btn ">扫码绑定</view>
@@ -658,6 +658,7 @@
 					})
 					if (data.code == 200) {
 						common.simpleToast(data.msg)
+						this.isShowCancel = false
 						this.bindOrderInfo()
 					} else {
 						common.simpleToast(data.msg)