Commit ee270356 authored by xinzhedeai's avatar xinzhedeai

蓝牙公公处理 页面单独调用write处理

parent df7a059a
import request from '@/common/request.js'
export function getDataList(data) { // 获取下拉列表数据
return request({
url: '/operation/getList',
method: 'get',
data
})
}
export function getselectList4productName(data) { // 获取下拉列表数据
return request({
url: '/product/getList',
method: 'get',
data
})
}
export function getselectList4tester(data) { // 获取下拉列表数据
return request({
url: '/product/getList',
method: 'post',
data
})
}
export function getDict(data) { // 获取下拉列表数据
return request({
url: '/system/dict/data/type/'+data.type,
method: 'get',
})
}
...@@ -33,9 +33,9 @@ const blueToothMixin = { ...@@ -33,9 +33,9 @@ const blueToothMixin = {
onUnload: function() { onUnload: function() {
// if (this.connected) { // if (this.connected) {
this.leavePageFlag = true this.leavePageFlag = true
this.stopLink({ // this.stopLink({
showTip: false // showTip: false
}) // })
commonStateCodeDeal(2, 'onUnload=>离开页面') commonStateCodeDeal(2, 'onUnload=>离开页面')
// } // }
}, },
...@@ -298,9 +298,28 @@ const blueToothMixin = { ...@@ -298,9 +298,28 @@ const blueToothMixin = {
const res = await blueToother.notifyBLECharacteristicValueChange(deviceId, serviceId, const res = await blueToother.notifyBLECharacteristicValueChange(deviceId, serviceId,
characteristicId, state) characteristicId, state)
this.connected = true this.connected = true
uni.setStorageSync('connected', true)
this.setNavBarTitle('【Notify】开启成功') this.setNavBarTitle('【Notify】开启成功')
this.readyRec = true; this.readyRec = true;
uni.hideLoading() uni.hideLoading()
this.gosend('POWER')
/**
* 024-12-27新增逻辑:
* 1、蓝牙连接成功后弹窗,点击确认调转页面
* 2、发送指令,获取小球id与电量
*/
showCustomModal({
content: '蓝牙已连接,是否跳转首页',
showCancel: true,
success: ()=> {
uni.reLaunch({
url: '/pages/home/home',
});
},
})
} catch (res) { } catch (res) {
this.setConnectState(false) this.setConnectState(false)
commonStateCodeDeal(res.errCode || res, commonStateCodeDeal(res.errCode || res,
...@@ -385,6 +404,9 @@ const blueToothMixin = { ...@@ -385,6 +404,9 @@ const blueToothMixin = {
// 设置测试值: // 设置测试值:
const recBlueResData = JSON.parse(recStr) const recBlueResData = JSON.parse(recStr)
console.log('设备检测值', recBlueResData)
console.info('获取小球id和电量', recBlueResData)
// console.log('设备检测值:', recBlueResData.angle) // console.log('设备检测值:', recBlueResData.angle)
this.form.realTestInclination = recBlueResData.angle this.form.realTestInclination = recBlueResData.angle
this.form.realTestHoleDepth = recBlueResData.lenth this.form.realTestHoleDepth = recBlueResData.lenth
...@@ -447,7 +469,6 @@ const blueToothMixin = { ...@@ -447,7 +469,6 @@ const blueToothMixin = {
// title: '已停止测量', // title: '已停止测量',
// }) // })
this.btnLoading = false this.btnLoading = false
this.saveFormData2Local && this.saveFormData2Local()
} }
}, },
fail: (res) => { fail: (res) => {
......
...@@ -248,7 +248,6 @@ function getCurrentTime() { ...@@ -248,7 +248,6 @@ function getCurrentTime() {
// 拼接年月日时分格式的字符串 // 拼接年月日时分格式的字符串
let formattedTime = `${year}-${month}-${date} ${hours}:${minutes}`; let formattedTime = `${year}-${month}-${date} ${hours}:${minutes}`;
return formattedTime
} }
function ab2Str(arrayBuffer) { function ab2Str(arrayBuffer) {
......
This diff is collapsed.
{ {
"name" : "中深孔验收仪", "name" : "露天炮孔验收仪",
"appid" : "__UNI__672B793", "appid" : "__UNI__672B793",
"description" : "中深孔验收仪", "description" : "露天炮孔验收仪",
"versionName" : "1.0.0", "versionName" : "1.0.0",
"versionCode" : "100", "versionCode" : "100",
"transformPx" : false, "transformPx" : false,
......
...@@ -55,6 +55,14 @@ ...@@ -55,6 +55,14 @@
"navigationBarTitleText" : "孔测量" "navigationBarTitleText" : "孔测量"
} }
}, },
{
"path" : "pages/home/operateLog",
"style" :
{
"navigationBarTitleText" : "操作日志"
}
},
// { // {
// "path": "pages/tabBar/component/comm", // "path": "pages/tabBar/component/comm",
// "style": { // "style": {
...@@ -82,7 +90,7 @@ ...@@ -82,7 +90,7 @@
"path" : "pages/user/login", "path" : "pages/user/login",
"style" : "style" :
{ {
"navigationBarTitleText" : "" "navigationBarTitleText" : "微信授权登录"
} }
}, },
{ {
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
</CustomNavbar> </CustomNavbar>
<view class="body-wrapper"> <view class="body-wrapper">
<button @click="gosend">获取电量</button>
<view class="demo-uni-row"> <view class="demo-uni-row">
<uni-row> <uni-row>
<uni-col :span="7" class="_title"> <uni-col :span="7" class="_title">
...@@ -141,10 +142,11 @@ ...@@ -141,10 +142,11 @@
<script> <script>
import CustomNavbar from '@/pages/component/CustomNavbar.vue'; import CustomNavbar from '@/pages/component/CustomNavbar.vue';
// import {
// blueToothMixin
// } from '../../common/mixin.js'
import { import {
blueToothMixin stringToBytes,
} from '../../common/mixin.js'
import {
getCurrentTime, getCurrentTime,
showCustomToast, showCustomToast,
showCustomModal showCustomModal
...@@ -156,7 +158,7 @@ ...@@ -156,7 +158,7 @@
getDict getDict
} from '../../api/blueToothMeasure.js' } from '../../api/blueToothMeasure.js'
export default { export default {
mixins: [blueToothMixin], // mixins: [blueToothMixin],
components: { components: {
CustomNavbar, CustomNavbar,
}, },
...@@ -198,6 +200,26 @@ ...@@ -198,6 +200,26 @@
// this.initLink() // this.initLink()
}, },
methods: { methods: {
gosend(){
var strbuf = new Uint8Array(stringToBytes('POWER'));
var buffer1 = strbuf.buffer;
setTimeout(()=>{
uni.writeBLECharacteristicValue({
deviceId: 'C8:47:80:52:93:A2',
serviceId: '0000FFE0-0000-1000-8000-00805F9B34FB',
characteristicId:'0000FFE1-0000-1000-8000-00805F9B34FB',
value: buffer1,
success: (res) => {
console.log('writeBLECharacteristicValue-success:res=>', res)
},
fail: (res) => {
console.log('writeBLECharacteristicValue-fail:res=>', res)
// commonStateCodeDeal(res.errCode || res, 'gosend -> writeBLECharacteristicValue',
// this)
},
});
}, 1000)
},
async getDictInfo() { async getDictInfo() {
let res = await getDict({ let res = await getDict({
type: 'zhuangyao_type' type: 'zhuangyao_type'
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
<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: #000; font-size: 32rpx; margin-top:20rpx;">
{{ pageLoadText }}
</view>
<view class="body-wrapper"> <view class="body-wrapper">
<!-- 横向均分 --> <!-- 横向均分 -->
...@@ -27,7 +30,9 @@ ...@@ -27,7 +30,9 @@
<script> <script>
import CustomNavbar from '@/pages/component/CustomNavbar.vue'; import CustomNavbar from '@/pages/component/CustomNavbar.vue';
const app = getApp(); import {
blueToothMixin
} from '../../common/mixin.js'
function inArray(arr, key, val) { function inArray(arr, key, val) {
for (let i = 0; i < arr.length; i++) { for (let i = 0; i < arr.length; i++) {
...@@ -46,13 +51,13 @@ ...@@ -46,13 +51,13 @@
return hexArr.join(''); return hexArr.join('');
} }
export default { export default {
mixins: [blueToothMixin],
components: { components: {
CustomNavbar, CustomNavbar,
}, },
onBackPress(options) { onBackPress(options) {
this.gobackDeal() this.gobackDeal()
return true return true
}, },
data() { data() {
return { return {
...@@ -71,11 +76,7 @@ ...@@ -71,11 +76,7 @@
uni.hideLoading() uni.hideLoading()
}, },
onLoad(options) { onLoad(options) {
if (options.refer === 'blueTest') {
this.redirectUrl = '/pages/home/blueTest'
}else if(options.refer === 'blueMeasure'){
this.redirectUrl = '/pages/home/blueMeasure'
}
}, },
methods: { methods: {
gobackDeal(){ gobackDeal(){
...@@ -172,18 +173,17 @@ ...@@ -172,18 +173,17 @@
}, },
goto_Comm(e) { goto_Comm(e) {
console.log('*****跳转首页');
// this.$globalData.ble_device = e.currentTarget.dataset; // this.$globalData.ble_device = e.currentTarget.dataset;
const deviceInfo = e.currentTarget.dataset const deviceInfo = e.currentTarget.dataset
this.deviceId = deviceInfo.deviceId
this.stopBluetoothDevicesDiscovery(); this.stopBluetoothDevicesDiscovery();
uni.setStorageSync('deviceInfo', deviceInfo) uni.setStorageSync('deviceInfo', deviceInfo)
uni.reLaunch({ console.log('*****开始连接蓝牙');
// url: this.redirectUrl, this.startLink()
url: '/pages/home/home' // uni.reLaunch({
// complete:function(e){ // url: '/pages/home/home'
// console.log('e', JSON.stringify(e)) // });
// }
});
}, },
closeBluetoothAdapter() { closeBluetoothAdapter() {
uni.closeBluetoothAdapter(); uni.closeBluetoothAdapter();
......
...@@ -4,13 +4,13 @@ ...@@ -4,13 +4,13 @@
<view class="logo-wrapper"> <view class="logo-wrapper">
<image class="logoImg" src="/static/image/home/logo.png" alt="" /> <image class="logoImg" src="/static/image/home/logo.png" alt="" />
<h3>露天炮孔验收仪</h3> <h3>露天炮孔验收仪</h3>
<button @click="gosend">获取电量</button>
</view> </view>
<view class="link-info-wrapper" @click="gosend('POWER')">
<view class="link-info-wrapper" @click="navTo('login')">
<div class="left"> <div class="left">
<image src="/static/image/paokong/linkY.png" mode=""></image> <image :src="`/static/image/paokong/${connected?'linkY':'linkN'}.png`" mode=""></image>
<view class="link-status"> <view class="link-status">
蓝牙已连接 蓝牙{{ connected? '已连接': '未连接' }}
</view> </view>
</div> </div>
<div class="right"> <div class="right">
...@@ -72,8 +72,12 @@ ...@@ -72,8 +72,12 @@
<script> <script>
import CustomNavbar from '@/pages/component/CustomNavbar.vue'; import CustomNavbar from '@/pages/component/CustomNavbar.vue';
import {formatNumber,formatDateThis,getUnixTime} from "../../common/dateUtil.js" import {formatNumber,formatDateThis,getUnixTime} from "../../common/dateUtil.js"
import {showCustomModal, showCustomToast} from "../../common/util.js" import {stringToBytes, showCustomModal, showCustomToast, commonStateCodeDeal} from "../../common/util.js"
// import {
// blueToothMixin
// } from '../../common/mixin.js'
export default { export default {
// mixins: [blueToothMixin],
onBackPress(options) { onBackPress(options) {
// showCustomToast({ // showCustomToast({
// title: '当前页为最后一页,不能继续返回了' // title: '当前页为最后一页,不能继续返回了'
...@@ -85,16 +89,59 @@ ...@@ -85,16 +89,59 @@
}, },
data() { data() {
return { return {
deviceInfo: {}
} }
}, },
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
uni.hideLoading()
// if(uni.getStorageSync('connected')){
// this.gosend('POWER')
// }else{
// this.initLink()
// }'
},
onShow() { onShow() {
uni.hideLoading() uni.hideLoading()
}, },
// watch:{
// connected(newVal){
// if(newVal){ // 已连接
// this.gosend('POWER')
// }
// }
// },
mounted() { mounted() {
const deviceInfo = uni.getStorageSync('deviceInfo')
if(deviceInfo){ // 获取蓝牙设备型号id
this.deviceInfo = deviceInfo
}
uni.hideTabBar() uni.hideTabBar()
}, },
methods: { methods: {
gosend(){
var strbuf = new Uint8Array(stringToBytes('POWER'));
var buffer1 = strbuf.buffer;
setTimeout(()=>{
uni.writeBLECharacteristicValue({
deviceId: 'C8:47:80:52:93:A2',
serviceId: '0000FFE0-0000-1000-8000-00805F9B34FB',
characteristicId:'0000FFE1-0000-1000-8000-00805F9B34FB',
value: buffer1,
success: (res) => {
console.log('writeBLECharacteristicValue-success:res=>', res)
},
fail: (res) => {
console.log('writeBLECharacteristicValue-fail:res=>', res)
// commonStateCodeDeal(res.errCode || res, 'gosend -> writeBLECharacteristicValue',
// this)
},
});
}, 1000)
},
navTo(flag){ navTo(flag){
if(flag === 'export'){ if(flag === 'export'){
this.exportData2Excel() this.exportData2Excel()
......
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
<view class="jisuanqi" @click="exportExcel" style="margin-top:100rpx;"> <view class="jisuanqi" @click="exportExcel" style="margin-top:100rpx;">
导出 导出
</view> </view>
<view class="jisuanqi" @click="showCalendar=true" style="margin-top:100rpx;"> <!-- <view class="jisuanqi" @click="showCalendar=true" style="margin-top:100rpx;">
选择日期 选择日期
</view> </view>
-->
<view class="content-confirm" style="margin-top:100rpx;"> <view class="content-confirm" style="margin-top:100rpx;">
日期选择{{searchDate}} 日期选择{{searchDate}}
<!-- <calendar-select v-model="showCalendar" <!-- <calendar-select v-model="showCalendar"
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
@change="changeDate"></calendar-select> @change="changeDate"></calendar-select>
--> -->
<!--
<button @click="open">打开弹窗</button> <button @click="open">打开弹窗</button>
<uni-popup ref="popup" type="bottom" border-radius="10px 10px 0 0"> <uni-popup ref="popup" type="bottom" border-radius="10px 10px 0 0">
<miku-calendar <miku-calendar
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
></miku-calendar> ></miku-calendar>
</uni-popup> </uni-popup> -->
</view> </view>
...@@ -46,13 +46,13 @@ ...@@ -46,13 +46,13 @@
</template> </template>
<script> <script>
import * as XLSX from '@/common/excel.js' import * as XLSX from '@/common/excel.js'
import CalendarSelect from '@/components/calendar-select/calendar-select.vue' // import CalendarSelect from '@/components/calendar-select/calendar-select.vue'
import mikuCalendar from "@/components/miku-calendar/mikuCalendar.vue" // import mikuCalendar from "@/components/miku-calendar/mikuCalendar.vue"
var that; var that;
export default { export default {
components: { components: {
CalendarSelect, // CalendarSelect,
mikuCalendar // mikuCalendar
}, },
data() { data() {
return { return {
......
<template> <template>
<view class="pageWrapper"> <view class="pageWrapper">
<CustomNavbar :title="navBarTitle" goBackUrl="/pages/home/home" @gobackDeal="gobackDeal"> <CustomNavbar :title="navBarTitle" @gobackDeal="gobackDeal">
</CustomNavbar> </CustomNavbar>
<view class="body-wrapper"> <view class="body-wrapper">
...@@ -68,25 +68,11 @@ ...@@ -68,25 +68,11 @@
</uni-tr> </uni-tr>
</uni-table> </uni-table>
</view> </view>
<view class="" v-show="!connected" style="text-align: center; color: darkgray; margin-top:20rpx;">
{{ pageLoadText }}
</view>
<!-- <uni-popup ref="popup" type="bottom" border-radius="10px 10px 0 0">
<miku-calendar :calendarBg="'#fff'"
:dateRange="[new Date('2024/02/01').getTime(),new Date('2024/02/27').getTime()]" :dateRangeMax="365"
@dateRangeMaxDeal="dateRangeMaxDeal" mode='dateRange' :showArrow="true" themeColor="rgb(100,124,203)"
arrowColor="rgb(100,124,203)" @confirm="calendarConfirm"></miku-calendar>
</uni-popup> -->
</view> </view>
</template> </template>
<script> <script>
import CustomNavbar from '@/pages/component/CustomNavbar.vue'; import CustomNavbar from '@/pages/component/CustomNavbar.vue';
import mikuCalendar from "@/components/miku-calendar/mikuCalendar.vue";
import { import {
getCurrentTime, getCurrentTime,
showCustomToast, showCustomToast,
...@@ -100,7 +86,6 @@ ...@@ -100,7 +86,6 @@
export default { export default {
components: { components: {
CustomNavbar, CustomNavbar,
mikuCalendar
}, },
data() { data() {
const currentDate = this.getDate({ const currentDate = this.getDate({
...@@ -151,6 +136,11 @@ ...@@ -151,6 +136,11 @@
} }
}, },
methods: { methods: {
gobackDeal(){ // 返回上一页的处理逻辑
uni.reLaunch({
url: '/pages/home/home',
});
},
// 搜索 // 搜索
search() { search() {
this.getData(1, this.searchVal) this.getData(1, this.searchVal)
......
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