Browse Source

t调节蓝牙

liuwei 1 week ago
parent
commit
2366a644df
4 changed files with 9 additions and 8 deletions
  1. 1 0
      common/bluetooth.js
  2. 5 5
      pages/carList/carList.vue
  3. 2 3
      pages/index/index.css
  4. 1 0
      pages/index/index.vue

+ 1 - 0
common/bluetooth.js

@@ -589,6 +589,7 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
     // 将数据转换为ArrayBuffer类型
     var buffer;
     buffer = common.toArrayBuffer(data.shift());
+	console.log(buffer,'buffer写入---------------------');
 	// console.log(buffer,'buffer111');
     // 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
 	setTimeout(() => {

+ 5 - 5
pages/carList/carList.vue

@@ -2,7 +2,7 @@
 	<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" :class="{ 'car-list-card-i' : car_info.car_sn == item.car_sn}">
+		<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" class="icon" src="/static/resource/images/gyq_ly.png" mode=""></image>
 			<!-- https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX -->
@@ -58,10 +58,9 @@
 		},
 		methods: {
 			navCarDetail(){
-				// const me=this
-				// uni.navigateTo({
-				// 	url: '/pages/carDetail/carDetail'
-				// })
+				uni.switchTab({
+					url: '/pages/service/service'
+				})
 			},
 			clickItem(item){
 				if(item.car_sn == this.car_info.car_sn) return
@@ -126,6 +125,7 @@
     border: 6rpx solid #FFF;
     position: relative;
 	padding: 30rpx;
+	margin-bottom: 20rpx;
 	.select{
 		position: absolute;
 		right: 0;

+ 2 - 3
pages/index/index.css

@@ -5,7 +5,7 @@
 	align-items: center;
 }
 .padding_about_40{
-	padding: 26rpx 40rpx 44rpx;
+	padding: 26rpx 0rpx 44rpx 40rpx;
 }
 .car-img-view{
 	padding: 0 40rpx;
@@ -29,8 +29,7 @@
 	overflow: hidden;
 	text-overflow: ellipsis;
 	display: flex;
-	align-items: center;
-	justify-content: center;
+	align-items: baseline;
 }
 .car-name-view .text{
 	width: 200rpx;

+ 1 - 0
pages/index/index.vue

@@ -462,6 +462,7 @@
 							car_info: resp.data.data,
 						})
 						uni.setStorageSync('car_info', this.car_info);
+						console.log(this.car_info,'this.car_info------------------');
 						//判断逾期
 						if(!resp.data.data.sold_time) return 
 						let time = Math.ceil(resp.data.data.hire_end_time - Math.floor(new Date()) / 1000) / 60