Commit 1294246c authored by xinzhedeai's avatar xinzhedeai

搜索页面样式调整

parent f37eb022
...@@ -27,43 +27,15 @@ const blueToothMixin = { ...@@ -27,43 +27,15 @@ const blueToothMixin = {
}, },
data() { data() {
return { return {
startMeasureText: '开始测量',
pageLoadText: '', pageLoadText: '',
form: {
// 回显详情
'engineeringName': '',
'middleSectionName': '',
'segmentName': '',
'alignmentLineName': '',
'boreholeNumber': '',
'throughHole': '',
'designHoleDepth': '',
'designInclination': '',
// 新录入
realTestHoleDepth: '',
realTestInclination: '',
// realTestTime: '',
},
// 蓝牙连接相关 // 蓝牙连接相关
// 目标机器信息
serviceu: '0000FFE0-0000-1000-8000-00805F9B34FB'.toUpperCase(),
txdu: '0000FFE1-0000-1000-8000-00805F9B34FB'.toUpperCase(),
rxdu: '0000FFE1-0000-1000-8000-00805F9B34FB'.toUpperCase(),
deviceName: '', deviceName: '',
deviceId: '', deviceId: '',
characteristicId: '', characteristicId: '',
connectState: false, // false不正常 true正常 connectState: false, // false不正常 true正常
connected: false, connected: false,
// reconnect: '连接中...',
// connectState: '正在连接',
readyRec: false, // 通知事件是否准备就绪标记。 readyRec: false, // 通知事件是否准备就绪标记。
canWrite: false,
// recdata:'',
leavePageFlag: false, leavePageFlag: false,
// 交互优化
btnLoading: false,
}; };
}, },
methods: { methods: {
...@@ -80,17 +52,6 @@ const blueToothMixin = { ...@@ -80,17 +52,6 @@ const blueToothMixin = {
// uni.reLaunch({ // uni.reLaunch({
// url: '/pages/home/home', // url: '/pages/home/home',
// }); // });
// }else if(this.btnLoading){
// showCustomModal({
// content: '正在测量中,是否要中断测量?',
// showCancel: true,
// success: ()=> {
// this.gosend('STOP')
// uni.reLaunch({
// url: '/pages/home/home',
// });
// },
// })
// }else{ // }else{
// showCustomModal({ // showCustomModal({
// content: '验收仪设备正在连接中,是否要中断连接?', // content: '验收仪设备正在连接中,是否要中断连接?',
...@@ -156,15 +117,6 @@ const blueToothMixin = { ...@@ -156,15 +117,6 @@ const blueToothMixin = {
async stopLink(opt) { async stopLink(opt) {
await blueToother.closeBLEConnection(storager.get('deviceInfo').deviceId) await blueToother.closeBLEConnection(storager.get('deviceInfo').deviceId)
await blueToother.closeBluetoothAdapter() await blueToother.closeBluetoothAdapter()
// uni.closeBLEConnection({
// deviceId: this.deviceId,
// success: (res) => {
// commonStateCodeDeal(2, 'stopLink=>断开链接成功', this)
// },
// fail: (err) => {
// commonStateCodeDeal(res.errCode || res, 'stopLink=>断开链接失败', this)
// }
// });
this.setNavBarTitle('已断开 ') this.setNavBarTitle('已断开 ')
this.setConnectState(false) this.setConnectState(false)
...@@ -192,17 +144,6 @@ const blueToothMixin = { ...@@ -192,17 +144,6 @@ const blueToothMixin = {
commonStateCodeDeal(2, commonStateCodeDeal(2,
`onBLEConnectionStateChange=>蓝牙设备 ${res.deviceId} 连接状态改变=> ${res.connected}` `onBLEConnectionStateChange=>蓝牙设备 ${res.deviceId} 连接状态改变=> ${res.connected}`
) )
// 如果是非主动离开页面导致断开链接则不显示链接蓝牙弹框
// if (!res.connected && !this.leavePageFlag) {
// showCustomModal({
// content: '当前连接已断开,是否重新连接?',
// showCancel: true,
// success: ()=>{
// uni.hideLoading()
// this.initLink()
// }
// })
// }
}) })
} }
...@@ -241,10 +182,10 @@ const blueToothMixin = { ...@@ -241,10 +182,10 @@ const blueToothMixin = {
`getBLEDeviceServices获取${res.services.length}条服务` `getBLEDeviceServices获取${res.services.length}条服务`
) )
for (let i = 0; i < res.services.length; i++) { for (let i = 0; i < res.services.length; i++) {
if (this.serviceu == res.services[i].uuid) { if (blueToother.serviceId == res.services[i].uuid) {
isService = true; isService = true;
this.setNavBarTitle('服务已匹配') this.setNavBarTitle('服务已匹配')
this.getBLEDeviceCharacteristics(storager.get('deviceInfo').deviceId, this.serviceu); this.getBLEDeviceCharacteristics(storager.get('deviceInfo').deviceId, blueToother.serviceId);
} }
} }
if (!isService) { if (!isService) {
...@@ -327,12 +268,9 @@ const blueToothMixin = { ...@@ -327,12 +268,9 @@ const blueToothMixin = {
// that.readBLECharacteristicValue(deviceId, serviceId, item.uuid) // that.readBLECharacteristicValue(deviceId, serviceId, item.uuid)
// } // }
if (item.properties.write) { if (item.properties.write) {
this.setData({
canWrite: true
});
// console.log('[Write]', item.uuid); // console.log('[Write]', item.uuid);
this._deviceId = deviceId; this._deviceId = deviceId;
if (this.txdu == item.uuid) { if (blueToother.characteristicId_WRITE == item.uuid) {
commonStateCodeDeal(2, commonStateCodeDeal(2,
`特征值【WRITE】支持 => txdu:${that.txdu} CHARACTERISTIC_UUID:${item.uuid}` `特征值【WRITE】支持 => txdu:${that.txdu} CHARACTERISTIC_UUID:${item.uuid}`
) )
...@@ -353,12 +291,10 @@ const blueToothMixin = { ...@@ -353,12 +291,10 @@ const blueToothMixin = {
*/ */
if (item.properties.notify) { if (item.properties.notify) {
// console.log('[Notify]', item.uuid); // console.log('[Notify]', item.uuid);
if (this.rxdu == item.uuid) { if (blueToother.characteristicId_NOTIFY == item.uuid) {
commonStateCodeDeal(2, commonStateCodeDeal(2,
`特征值【Notify】支持=> rxdu:${this.rxdu} CHARACTERISTIC_UUID:${item.uuid}` `特征值【Notify】支持=> rxdu:${blueToother.characteristicId_NOTIFY} CHARACTERISTIC_UUID:${item.uuid}`
) )
// console.warn('find notity uuid try enablec....', item.uuid);
// this.showModalTips(this.rxdu + "\r正在开启通知...")
that.setNavBarTitle('正在开启通知') that.setNavBarTitle('正在开启通知')
that.notifyBLECharacteristicValueChange(storager.get('deviceInfo').deviceId, serviceId, item.uuid, true) that.notifyBLECharacteristicValueChange(storager.get('deviceInfo').deviceId, serviceId, item.uuid, true)
...@@ -378,8 +314,8 @@ const blueToothMixin = { ...@@ -378,8 +314,8 @@ const blueToothMixin = {
// var buf = new Uint8Array(characteristic.value); // var buf = new Uint8Array(characteristic.value);
var recStr = ab2Str(characteristic.value); var recStr = ab2Str(characteristic.value);
// console.warn('recstr: ', recStr, characteristic.characteristicId); // console.warn('recstr: ', recStr, characteristic.characteristicId);
if (this.rxdu != characteristic.characteristicId) { if (blueToother.characteristicId_NOTIFY != characteristic.characteristicId) {
// console.error('no same : ', this.rxdu, characteristic.characteristicId); // console.error('no same : ', blueToother.characteristicId_NOTIFY, characteristic.characteristicId);
this.setConnectState(false) this.setConnectState(false)
that.setNavBarTitle('特征值UUID值不匹配') that.setNavBarTitle('特征值UUID值不匹配')
commonStateCodeDeal(2, '特征值UUID值不匹配onBLECharacteristicValueChange') commonStateCodeDeal(2, '特征值UUID值不匹配onBLECharacteristicValueChange')
......
...@@ -2,14 +2,10 @@ ...@@ -2,14 +2,10 @@
<view class="wrapper"> <view class="wrapper">
<CustomNavbar title="蓝牙扫描" @gobackDeal="gobackDeal('blueSearch')"> <CustomNavbar title="蓝牙扫描" @gobackDeal="gobackDeal('blueSearch')">
</CustomNavbar> </CustomNavbar>
<view class="" style="text-align: center; color: #fff; font-size: 32rpx; margin-top:20rpx;"> <view class="pageLoadText">
{{ pageLoadText }} {{ pageLoadText }}
</view> </view>
<view class="body-wrapper"> <view class="body-wrapper">
<!-- 横向均分 -->
<!-- <view class="found"></view> -->
<view class="devices_summary found">已发现 {{ devices.length }} 个BLE设备:</view> <view class="devices_summary found">已发现 {{ devices.length }} 个BLE设备:</view>
<scroll-view class="device_list" scroll-y scroll-with-animation> <scroll-view class="device_list" scroll-y scroll-with-animation>
<view :data-device-id="item.deviceId" :data-device-name="item.name || item.localName" @tap="goto_Comm" <view :data-device-id="item.deviceId" :data-device-name="item.name || item.localName" @tap="goto_Comm"
...@@ -21,7 +17,7 @@ ...@@ -21,7 +17,7 @@
<view style="font-size: 27rpx; color: #676767">{{ item.deviceId}}</view> <view style="font-size: 27rpx; color: #676767">{{ item.deviceId}}</view>
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
<button :loading="misScanding" class="button_sp" hover-class="button_sp2" <button :loading="misScanding" class="button_sp" hover-class="button_sp2"
@tap="openBluetoothAdapter">{{ scandbutName }}</button> @tap="openBluetoothAdapter">{{ scandbutName }}</button>
...@@ -68,8 +64,8 @@ ...@@ -68,8 +64,8 @@
}, },
mixins: [blueToothMixin], mixins: [blueToothMixin],
components: { components: {
CustomNavbar, CustomNavbar,
}, },
data() { data() {
return { return {
devices: [], devices: [],
...@@ -86,8 +82,7 @@ ...@@ -86,8 +82,7 @@
onShow() { onShow() {
popuper.hideLoading() popuper.hideLoading()
}, },
onLoad(options) { onLoad(options) {},
},
methods: { methods: {
// gobackDeal(){ // gobackDeal(){
// console.log('XXXXXXXXX****8泛会上一页') // console.log('XXXXXXXXX****8泛会上一页')
...@@ -111,6 +106,7 @@ ...@@ -111,6 +106,7 @@
// }); // });
// }, // },
openBluetoothAdapter() { openBluetoothAdapter() {
this.pageLoadText = ''
this.misScanding = false; this.misScanding = false;
uni.openBluetoothAdapter({ uni.openBluetoothAdapter({
success: (res) => { success: (res) => {
...@@ -198,14 +194,14 @@ ...@@ -198,14 +194,14 @@
}, },
goto_Comm(e) { goto_Comm(e) {
if(this.$store.state.connected){ if (this.$store.state.connected) {
showCustomModal({ showCustomModal({
content: '已有连接的蓝牙设备,是否要中断当前连接?', content: '已有连接的蓝牙设备,是否要中断当前连接?',
showCancel: true, showCancel: true,
success: ()=> { success: () => {
this.stopLink({ this.stopLink({
showTip: false, showTip: false,
cb: function(){ cb: function() {
showCustomToast({ showCustomToast({
title: '设备连接已断开' title: '设备连接已断开'
}) })
...@@ -214,7 +210,7 @@ ...@@ -214,7 +210,7 @@
// this.goto_Comm(e) // this.goto_Comm(e)
}, },
}) })
}else{ } else {
popuper.showLoading({ popuper.showLoading({
title: '设备连接中...' title: '设备连接中...'
}) })
...@@ -223,7 +219,7 @@ ...@@ -223,7 +219,7 @@
this.deviceId = deviceInfo.deviceId this.deviceId = deviceInfo.deviceId
this.stopBluetoothDevicesDiscovery(); this.stopBluetoothDevicesDiscovery();
uni.setStorageSync('deviceInfo', deviceInfo) uni.setStorageSync('deviceInfo', deviceInfo)
this.startLink() this.startLink()
} }
}, },
closeBluetoothAdapter() { closeBluetoothAdapter() {
...@@ -234,13 +230,25 @@ ...@@ -234,13 +230,25 @@
}; };
</script> </script>
<style lang="scss"> <style lang="scss">
.wrapper{ .pageLoadText {
position: absolute;
bottom: -100rpx;
right: 50%;
color: gray;
transform: translateX(50%);
width: 80vw;
text-align: center;
}
.wrapper {
position: relative;
width: 100vw; width: 100vw;
height: calc(100vh-44rpx); height: calc(100vh-44rpx);
padding-top: 44rpx; padding-top: 44rpx;
background: linear-gradient(180deg, #007AFF 0%, #419AFF 16%, #EFF1F4 43%); background: linear-gradient(180deg, #007AFF 0%, #419AFF 16%, #EFF1F4 43%);
} }
.body-wrapper{
.body-wrapper {
margin: 0 auto; margin: 0 auto;
/* display: flex; /* display: flex;
justify-content: center; justify-content: center;
...@@ -252,7 +260,8 @@ ...@@ -252,7 +260,8 @@
padding-top: 20rpx; padding-top: 20rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 10rpx; border-radius: 10rpx;
.found{
.found {
width: 642rpx; width: 642rpx;
height: 60rpx; height: 60rpx;
margin: 20rpx auto; margin: 20rpx auto;
...@@ -264,11 +273,12 @@ ...@@ -264,11 +273,12 @@
text-align: center; text-align: center;
} }
} }
page { page {
color: #333; color: #333;
} }
/* .devices_summary { /* .devices_summary {
padding: 10px; padding: 10px;
font-size: 16px; font-size: 16px;
background-color: hsl(216, 5%, 22%); background-color: hsl(216, 5%, 22%);
......
...@@ -161,9 +161,10 @@ ...@@ -161,9 +161,10 @@
const fileName='炮孔测量数据导出' const fileName='炮孔测量数据导出'
const header = ['productName', 'artilleryAreaName', 'cannonHoleArrayNum', const header = ['productName', 'artilleryAreaName', 'cannonHoleArrayNum',
'cannonHoleNum', 'expectedDepth','remark', 'cannonHoleNum', 'expectedDepth',
'actualDepth', 'actualWaterLevel', 'actualDepth', 'actualWaterLevel',
'afterActualDepth', 'afterActualWaterLevel', 'afterActualDepth', 'afterActualWaterLevel',
'remark',
]; ];
const headerName = { const headerName = {
productName: '工程名称', productName: '工程名称',
...@@ -175,7 +176,7 @@ ...@@ -175,7 +176,7 @@
actualWaterLevel: '实测水深', actualWaterLevel: '实测水深',
afterActualDepth: '装药后孔深', afterActualDepth: '装药后孔深',
afterActualWaterLevel: '装药后水深', afterActualWaterLevel: '装药后水深',
// remark: '备注' remark: '备注'
}; };
showCustomToast({ showCustomToast({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment