This commit is contained in:
3321822538@qq.com 2024-05-30 17:24:10 +08:00
parent 53901aec4f
commit 63cf0b1e50
8 changed files with 173 additions and 170 deletions

View File

@ -21,7 +21,7 @@ const install = (Vue, vm) => {
// });
Vue.prototype.$u.http.setConfig({
// baseUrl: 'http://192.168.2.184:3000/dev-api',
baseUrl: 'https://kaiguan.chuantewulian.cn/prod-api',
baseUrl: 'https://kg.chuantewulian.cn/prod-api',
loadingText: '努力加载中~',
loadingTime: 1000,
// 设置自定义头部content-type

View File

@ -85,7 +85,7 @@
}
let sceneValue = option.q
let decodedValue = decodeURIComponent(sceneValue);
this.id = getQueryParam(decodedValue, 'deviceNo')
this.id = getQueryParam(decodedValue, 's')
console.log(this.id)
this.startTimer()
this.gettaoc()

View File

@ -79,7 +79,7 @@
}
let sceneValue = res.result
let decodedValue = decodeURIComponent(sceneValue);
this.deviceNo = getQueryParam(decodedValue, 'deviceNo')
this.deviceNo = getQueryParam(decodedValue, 's')
// this.deviceNo = res.result;
},
fail: err => {

View File

@ -180,14 +180,10 @@
}
let sceneValue = res.result
let decodedValue = decodeURIComponent(sceneValue);
let id = getQueryParam(decodedValue, 'deviceNo')
let id = getQueryParam(decodedValue, 's')
this.$u.get(`/app/device/${id}/bySn`).then((res) => {
if (res.code == 200) {
this.qrResult = 'CTKG-' + res.data.mac
// console.log(this.qrResult);
// uni.navigateTo({
// url:'/page_fenbao/device/lianjie?mac=' + this.qrResult + '&storeId=' + this.storeId
// })
xBlufi.initXBlufi(1);
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
@ -243,7 +239,8 @@
} else {
uni.showToast({
title: '没有发现设备',
icon: 'none'
icon: 'none',
duration:2000
});
}
break;

View File

@ -180,7 +180,7 @@
}
let sceneValue = res.result
let decodedValue = decodeURIComponent(sceneValue);
let id = getQueryParam(decodedValue, 'deviceNo')
let id = getQueryParam(decodedValue, 's')
this.$u.get(`/app/device/${id}/withSuitList`).then((res) =>{
if(res.code == 200){
uni.navigateTo({

View File

@ -188,11 +188,11 @@
token: '',
userImgs: '',
imgflag: true,
mac:"",
name:'',
deviceId:'',
storeId:'',
qrResult:''
mac: "",
name: '',
deviceId: '',
storeId: '',
qrResult: ''
}
},
onLoad(option) {
@ -322,7 +322,7 @@
icon: 'success',
duration: 2000
})
}else if(res.code == 500){
} else if (res.code == 500) {
uni.showToast({
title: '设备不在线',
icon: 'none',
@ -491,8 +491,8 @@
if (device.name == this.qrResult) {
this.deviceId = device.deviceId
this.name = device.name
this.mac = device.name.slice(5,17)
console.log(this.mac,'macmacmac');
this.mac = device.name.slice(5, 17)
console.log(this.mac, 'macmacmac');
this.devicesList = uniqueDevicesList;
}
@ -517,8 +517,8 @@
name = this.name.slice(index + 1);
}
let data = {
storeId:this.storeId,
mac:this.mac
storeId: this.storeId,
mac: this.mac
}
this.$u.put('/app/device/bind', data).then((res) => {
if (res.code == 200) {
@ -533,20 +533,24 @@
uni.showModal({
title: '提示',
content: '你已绑定成功,需前去配网吗?',
success: function (res) {
success: function(res) {
if (res.confirm) {
let systemInfo = uni.getSystemInfoSync();
if (systemInfo.platform === 'android') {
// Android
uni.navigateTo({
url: '/page_components/wifilist/index?deviceId=' + options
.data.deviceId + '&name=' + options.data.name
url: '/page_components/wifilist/index?deviceId=' +
options
.data.deviceId + '&name=' +
options.data.name
})
} else if (systemInfo.platform === 'ios') {
// iOS
uni.navigateTo({
url: '/page_fenbao/device/wifivideo?deviceId=' + options
.data.deviceId + '&name=' + options.data.name
url: '/page_fenbao/device/wifivideo?deviceId=' +
options
.data.deviceId + '&name=' +
options.data.name
})
}
} else if (res.cancel) {
@ -554,7 +558,7 @@
}
}
})
}else if(res.code == 500){
} else if (res.code == 500) {
uni.showToast({
title: '该设备已被绑定',
icon: 'none',
@ -768,6 +772,7 @@
padding-left: 80rpx;
padding-right: 120rpx;
box-sizing: border-box;
.cont {
.tit {
font-size: 28rpx;

View File

@ -109,7 +109,7 @@
}
let sceneValue = res.result
let decodedValue = decodeURIComponent(sceneValue);
this.qrResult = getQueryParam(decodedValue, 'deviceNo')
this.qrResult = getQueryParam(decodedValue, 's')
// this.qrResult = res.result; //
},
fail: err => {

View File

@ -216,7 +216,8 @@
}
let sceneValue = res.result
let decodedValue = decodeURIComponent(sceneValue);
let id = getQueryParam(decodedValue, 'deviceNo')
let id = getQueryParam(decodedValue, 's')
console.log(res,id);
this.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
if (res.code == 200) {
uni.navigateTo({