优化了蓝牙连接 WiFi连接 以及绑定
This commit is contained in:
parent
247b2582ab
commit
7392a4a7ef
|
@ -20,10 +20,10 @@ const install = (Vue, vm) => {
|
||||||
// },
|
// },
|
||||||
// });
|
// });
|
||||||
Vue.prototype.$u.http.setConfig({
|
Vue.prototype.$u.http.setConfig({
|
||||||
baseUrl: 'http://192.168.2.143:10002',
|
// baseUrl: 'http://192.168.2.143:10002',
|
||||||
// baseUrl: 'https://kg.chuangtewl.com/prod-api',
|
baseUrl: 'https://kg.chuangtewl.com/prod-api',
|
||||||
loadingText: '努力加载中~',
|
// loadingText: '努力加载中~',
|
||||||
loadingTime: 1000,
|
// loadingTime: 1000,
|
||||||
// 设置自定义头部content-type
|
// 设置自定义头部content-type
|
||||||
header: {
|
header: {
|
||||||
'content-type': 'application/json;charset=UTF-8',
|
'content-type': 'application/json;charset=UTF-8',
|
||||||
|
|
|
@ -6,15 +6,16 @@
|
||||||
|
|
||||||
<view class="icon">
|
<view class="icon">
|
||||||
<view class="imgbox" v-if="userImgs">
|
<view class="imgbox" v-if="userImgs">
|
||||||
<button style="border: 0;outline: none;width: 143rpx;padding-left: 0rpx;height: 143rpx;border-radius: 16rpx;" @click="getImage">
|
<button style="border: 0;outline: none;width: 143rpx;padding-left: 0rpx;height: 143rpx;border-radius: 16rpx;" type="primary reverse" open-type="chooseAvatar" @chooseavatar="getImage">
|
||||||
<image style="border-radius: 10rpx;" :src="userImgs" mode="aspectFit"></image>
|
<image style="border-radius: 10rpx;" :src="userImgs" mode="aspectFit"></image>
|
||||||
</button>
|
</button>
|
||||||
</view>
|
</view>
|
||||||
<view class="imgbox" v-else>
|
<view class="imgbox" v-else>
|
||||||
<button style="border: 0;outline: none;width: 143rpx;padding-left: 0rpx;height: 143rpx;border-radius: 16rpx;" @click="getImage">
|
<button style="border: 0;outline: none;width: 143rpx;padding-left: 0rpx;height: 143rpx;border-radius: 16rpx;" type="primary reverse" open-type="chooseAvatar" @chooseavatar="getImage">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uY8CPw9YE6JxPzcHUaqf" mode="aspectFit"></image>
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uY8CPw9YE6JxPzcHUaqf" mode="aspectFit"></image>
|
||||||
</button>
|
</button>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="li" @click.stop="sremakemc()">
|
<view class="li" @click.stop="sremakemc()">
|
||||||
|
@ -183,6 +184,42 @@
|
||||||
|
|
||||||
<!-- 选择店铺 -->
|
<!-- 选择店铺 -->
|
||||||
<u-select v-model="showshop" :list="wateringList" @confirm="confirms"></u-select>
|
<u-select v-model="showshop" :list="wateringList" @confirm="confirms"></u-select>
|
||||||
|
|
||||||
|
<!-- 蓝牙连接 -->
|
||||||
|
<view class="bluetoothbox" v-if="bluetoothflag">
|
||||||
|
<view class="stop">
|
||||||
|
正在连接该设备蓝牙
|
||||||
|
</view>
|
||||||
|
<view class="xtop">
|
||||||
|
请将手机与设备尽量靠近
|
||||||
|
</view>
|
||||||
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ucDphMKsozqwwllJTAKL" mode=""></image>
|
||||||
|
<!-- <view class="xqx" @click="bluetoothflag = false">
|
||||||
|
取消连接
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 蓝牙连接失败 -->
|
||||||
|
<view class="bluetoothbox" v-if="shibaiflag">
|
||||||
|
<image class="img" src="https://api.ccttiot.com/smartmeter/img/static/uTb3vSlbcHdPMFQMBjyL" mode=""></image>
|
||||||
|
<view class="one">
|
||||||
|
蓝牙连接失败
|
||||||
|
</view>
|
||||||
|
<view class="two">
|
||||||
|
请确保手机足够靠近设备
|
||||||
|
</view>
|
||||||
|
<view class="thr">
|
||||||
|
并且设备处于上电状态
|
||||||
|
</view>
|
||||||
|
<view class="anfour">
|
||||||
|
<view class="qx" @click="btnlyqx">
|
||||||
|
取消
|
||||||
|
</view>
|
||||||
|
<view class="cx" @click="btnwifi">
|
||||||
|
重新连接
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -192,6 +229,8 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
bluetoothflag:false,
|
||||||
|
shibaiflag:false,
|
||||||
bgc: {
|
bgc: {
|
||||||
backgroundColor: "#8883f0",
|
backgroundColor: "#8883f0",
|
||||||
},
|
},
|
||||||
|
@ -274,6 +313,10 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
btnlyqx(){
|
||||||
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = false
|
||||||
|
},
|
||||||
// 修改图片
|
// 修改图片
|
||||||
getImage(e) {
|
getImage(e) {
|
||||||
let _this = this
|
let _this = this
|
||||||
|
@ -355,127 +398,132 @@
|
||||||
},
|
},
|
||||||
// 点击wifi进行配网
|
// 点击wifi进行配网
|
||||||
btnwifi(){
|
btnwifi(){
|
||||||
uni.showLoading({
|
this.shibaiflag = false
|
||||||
title: '蓝牙连接中...'
|
this.bluetoothflag = true
|
||||||
})
|
// console.log(this.deviceId,'idididididdidii');
|
||||||
if(this.deviceId == ''){
|
if(this.setMode == null){
|
||||||
xBlufi.initXBlufi(1);
|
xBlufi.initXBlufi(1)
|
||||||
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
||||||
xBlufi.notifyStartDiscoverBle({
|
xBlufi.notifyStartDiscoverBle({
|
||||||
'isStart': true
|
'isStart': true
|
||||||
})
|
|
||||||
|
|
||||||
// 停止蓝牙搜索
|
|
||||||
setTimeout(() => {
|
|
||||||
xBlufi.notifyStartDiscoverBle({
|
|
||||||
'isStart': false
|
|
||||||
});
|
|
||||||
|
|
||||||
xBlufi.notifyConnectBle({
|
|
||||||
isStart: true,
|
|
||||||
deviceId: this.deviceId,
|
|
||||||
name: this.name
|
|
||||||
})
|
|
||||||
xBlufi.notifyInitBleEsp32({
|
|
||||||
deviceId: this.deviceId
|
|
||||||
})
|
|
||||||
let name = ''
|
|
||||||
let index = this.name.indexOf('-');
|
|
||||||
if (index !== -1) {
|
|
||||||
name = this.name.slice(index + 1);
|
|
||||||
}
|
|
||||||
let data = {
|
|
||||||
storeId: this.storeId,
|
|
||||||
mac: this.mac
|
|
||||||
}
|
|
||||||
this.$u.put('/app/device/bind', data).then((res) => {
|
|
||||||
if (res.code == 200) {
|
|
||||||
// uni.showToast({
|
|
||||||
// title: '绑定成功',
|
|
||||||
// icon: 'success',
|
|
||||||
// duration: 2000
|
|
||||||
// })
|
|
||||||
uni.hideLoading();
|
|
||||||
uni.removeStorageSync('mac');
|
|
||||||
let systemInfo = uni.getSystemInfoSync();
|
|
||||||
if (systemInfo.platform == 'android') {
|
|
||||||
uni.hideLoading()
|
|
||||||
// 当前设备是 Android
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '/page_components/wifilist/index?deviceId=' +this.deviceId + '&name=' +this.name
|
|
||||||
})
|
|
||||||
} else if (systemInfo.platform == 'ios') {
|
|
||||||
uni.hideLoading()
|
|
||||||
// 当前设备是 iOS
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '/page_fenbao/device/wifivideo?deviceId=' +this.deviceId + '&name=' +this.name
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}else if(res.msg == '设备编号和mac不能同时为空'){
|
|
||||||
uni.hideLoading()
|
|
||||||
uni.showToast({
|
|
||||||
title: '未连接到设备,请查看蓝牙是否打开以及在设备范围内',
|
|
||||||
icon: 'none',
|
|
||||||
duration: 2000
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
uni.hideLoading()
|
|
||||||
uni.showToast({
|
|
||||||
title: res.msg,
|
|
||||||
icon: 'none',
|
|
||||||
duration: 2000
|
|
||||||
});
|
|
||||||
// uni.navigateBack()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}, 1000)
|
|
||||||
}else{
|
|
||||||
let name = ''
|
|
||||||
let index = this.name.indexOf('-');
|
|
||||||
if (index !== -1) {
|
|
||||||
name = this.name.slice(index + 1);
|
|
||||||
}
|
|
||||||
let data = {
|
|
||||||
storeId: this.storeId,
|
|
||||||
mac: this.mac
|
|
||||||
}
|
|
||||||
this.$u.put('/app/device/bind', data).then((res) => {
|
|
||||||
if (res.code == 200) {
|
|
||||||
uni.showToast({
|
|
||||||
title: '绑定成功',
|
|
||||||
icon: 'none',
|
|
||||||
duration: 2000
|
|
||||||
})
|
})
|
||||||
uni.hideLoading();
|
|
||||||
uni.removeStorageSync('mac');
|
// 停止蓝牙搜索
|
||||||
let systemInfo = uni.getSystemInfoSync();
|
setTimeout(() => {
|
||||||
if (systemInfo.platform == 'android') {
|
xBlufi.notifyStartDiscoverBle({
|
||||||
// 当前设备是 Android
|
'isStart': false
|
||||||
uni.navigateTo({
|
|
||||||
url: '/page_components/wifilist/index?deviceId=' +this.deviceId + '&name=' +this.name
|
|
||||||
})
|
})
|
||||||
} else if (systemInfo.platform == 'ios') {
|
xBlufi.notifyConnectBle({
|
||||||
// 当前设备是 iOS
|
isStart: true,
|
||||||
uni.navigateTo({
|
deviceId: this.deviceId,
|
||||||
url: '/page_fenbao/device/wifivideo?deviceId=' +this.deviceId + '&name=' +this.name
|
name: this.name
|
||||||
})
|
})
|
||||||
|
xBlufi.notifyInitBleEsp32({
|
||||||
|
deviceId: this.deviceId
|
||||||
|
})
|
||||||
|
let name = ''
|
||||||
|
let index = this.name.indexOf('-');
|
||||||
|
if (index !== -1) {
|
||||||
|
name = this.name.slice(index + 1);
|
||||||
|
}
|
||||||
|
let data = {
|
||||||
|
storeId: this.storeId,
|
||||||
|
mac: this.mac
|
||||||
|
}
|
||||||
|
this.$u.put('/app/device/bind', data).then((res) => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
uni.hideLoading();
|
||||||
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = false
|
||||||
|
uni.removeStorageSync('mac');
|
||||||
|
let systemInfo = uni.getSystemInfoSync();
|
||||||
|
if (systemInfo.platform == 'android') {
|
||||||
|
// 当前设备是 Android
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_components/wifilist/index?deviceId=' +this.deviceId + '&name=' +this.name
|
||||||
|
})
|
||||||
|
} else if (systemInfo.platform == 'ios') {
|
||||||
|
// 当前设备是 iOS
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/device/wifivideo?deviceId=' +this.deviceId + '&name=' +this.name
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}else if(res.msg == '设备编号和mac不能同时为空'){
|
||||||
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
|
// uni.showToast({
|
||||||
|
// title: '连接失败',
|
||||||
|
// icon: 'none',
|
||||||
|
// duration: 2000
|
||||||
|
// });
|
||||||
|
} else {
|
||||||
|
// uni.showToast({
|
||||||
|
// title: res.msg,
|
||||||
|
// icon: 'none',
|
||||||
|
// duration: 2000
|
||||||
|
// });
|
||||||
|
// uni.navigateBack()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}, 1000)
|
||||||
|
}else{
|
||||||
|
let name = ''
|
||||||
|
let index = this.name.indexOf('-');
|
||||||
|
if (index !== -1) {
|
||||||
|
name = this.name.slice(index + 1);
|
||||||
}
|
}
|
||||||
}else if(res.msg == '设备编号和mac不能同时为空'){
|
let data = {
|
||||||
uni.showToast({
|
storeId: this.storeId,
|
||||||
title: '未连接到设备,请查看蓝牙是否打开以及在设备范围内',
|
mac: this.mac
|
||||||
icon: 'none',
|
}
|
||||||
duration: 2000
|
this.$u.put('/app/device/bind', data).then((res) => {
|
||||||
});
|
if (res.code == 200) {
|
||||||
} else {
|
// uni.showToast({
|
||||||
uni.showToast({
|
// title: '绑定成功',
|
||||||
title:res.msg,
|
// icon: 'none',
|
||||||
icon: 'none',
|
// duration: 2000
|
||||||
duration: 2000
|
// })
|
||||||
});
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = false
|
||||||
|
uni.hideLoading();
|
||||||
|
uni.removeStorageSync('mac');
|
||||||
|
let systemInfo = uni.getSystemInfoSync();
|
||||||
|
if (systemInfo.platform == 'android') {
|
||||||
|
// 当前设备是 Android
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_components/wifilist/index?deviceId=' +this.deviceId + '&name=' +this.name
|
||||||
|
})
|
||||||
|
} else if (systemInfo.platform == 'ios') {
|
||||||
|
// 当前设备是 iOS
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/device/wifivideo?deviceId=' +this.deviceId + '&name=' +this.name
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
if(res.msg == '设备编号和mac不能同时为空'){
|
||||||
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
|
uni.hideLoading()
|
||||||
|
// uni.showToast({
|
||||||
|
// title: '连接失败',
|
||||||
|
// icon: 'none',
|
||||||
|
// duration: 2000
|
||||||
|
// })
|
||||||
|
} else {
|
||||||
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
|
uni.hideLoading()
|
||||||
|
uni.showToast({
|
||||||
|
title:res.msg,
|
||||||
|
icon: 'none',
|
||||||
|
duration: 2000
|
||||||
|
})
|
||||||
|
// uni.navigateBack()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
},
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
sremakes() {
|
sremakes() {
|
||||||
if(this.wateringList.length == 0){
|
if(this.wateringList.length == 0){
|
||||||
|
@ -722,31 +770,31 @@
|
||||||
// console.log("文件读取中", options.data);
|
// console.log("文件读取中", options.data);
|
||||||
break;
|
break;
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
|
case xBlufi.XBLUFI_TYPE.TYPE_RECIEVE_CUSTON_DATA:
|
||||||
|
|
||||||
let ver_data = this.parseCustomData(options.data)
|
let ver_data = this.parseCustomData(options.data)
|
||||||
this.setMode = Math.floor(ver_data.setMode / 60)
|
this.setMode = Math.floor(ver_data.setMode / 60)
|
||||||
console.log("1收到设备发来的自定义数据结果:", ver_data,this.setMode);
|
console.log("1收到设备发来的自定义数据结果:", ver_data,this.setMode)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS:
|
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS:
|
||||||
if (options.result) {
|
if (options.result) {
|
||||||
let devicesarr = options.data
|
let devicesarr = options.data
|
||||||
// console.log(devicesarr,'devicesarrdevicesarr');
|
// console.log(devicesarr,'devicesarrdevicesarr');
|
||||||
devicesarr.forEach(device => {
|
devicesarr.forEach(device => {
|
||||||
const mac = device.name.substring(5);
|
const mac = device.name.substring(5)
|
||||||
if (device.name == this.qrResult) {
|
if (device.name == this.qrResult) {
|
||||||
this.deviceId = device.deviceId
|
this.deviceId = device.deviceId
|
||||||
this.name = device.name
|
this.name = device.name
|
||||||
this.mac = device.name.slice(5, 17)
|
this.mac = device.name.slice(5, 17)
|
||||||
console.log(this.mac, 'macmacmac');
|
// console.log(this.mac, 'macmacmac');
|
||||||
|
// this.devicesList = uniqueDevicesList;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
|
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
|
||||||
// console.log("连接回调:" + JSON.stringify(options));
|
// console.log("连接回调:" + JSON.stringify(options));
|
||||||
if (options.result) {
|
if (options.result) {
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title: '连接成功',
|
// title: '连接成功',
|
||||||
|
@ -757,18 +805,24 @@
|
||||||
"连接回调options.data.name:" + options.data.name);
|
"连接回调options.data.name:" + options.data.name);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// uni.hideLoading()
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
|
uni.hideLoading()
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title: '设备离线或不在范围内',
|
// title: '设备离线或不在范围内',
|
||||||
// icon: 'none',
|
// icon: 'none',
|
||||||
// duration: 2000
|
// duration: 2000
|
||||||
// })
|
// })
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_START:
|
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_START:
|
||||||
if (!options.result) {
|
if (!options.result) {
|
||||||
|
setTimeout(()=>{
|
||||||
|
uni.hideLoading()
|
||||||
|
this.bluetoothflag = false
|
||||||
|
},3000)
|
||||||
console.log("蓝牙未开启", options);
|
console.log("蓝牙未开启", options);
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title: '蓝牙未开启',
|
// title: '蓝牙未开启',
|
||||||
|
@ -783,13 +837,13 @@
|
||||||
// searching: true
|
// searching: true
|
||||||
// });
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_STOP:
|
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS_STOP:
|
||||||
if (options.result) {
|
if (options.result) {
|
||||||
let uniqueDevicesList = Array.from(new Set(this.devicesList));
|
let uniqueDevicesList = Array.from(new Set(this.devicesList));
|
||||||
|
|
||||||
// 将去重后的数组重新赋值给 this.devicesList
|
// 将去重后的数组重新赋值给 this.devicesList
|
||||||
this.devicesList = uniqueDevicesList;
|
this.devicesList = uniqueDevicesList;
|
||||||
let list = []
|
let list = []
|
||||||
|
@ -800,23 +854,27 @@
|
||||||
if (res.data == false) {
|
if (res.data == false) {
|
||||||
list.push(device)
|
list.push(device)
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
});
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.devicesList = list
|
this.devicesList = list
|
||||||
}, 200)
|
}, 200)
|
||||||
|
|
||||||
console.log('蓝牙停止搜索ok');
|
console.log('蓝牙停止搜索ok');
|
||||||
} else {
|
} else {
|
||||||
//蓝牙停止搜索失败
|
//蓝牙停止搜索失败
|
||||||
console.log('蓝牙停止搜索失败');
|
console.log('蓝牙停止搜索失败');
|
||||||
}
|
}
|
||||||
|
this.searching = false
|
||||||
|
// _this.setData({
|
||||||
|
// searching: false
|
||||||
|
// });
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
parseCustomData(data) {
|
parseCustomData(data) {
|
||||||
|
@ -852,6 +910,86 @@
|
||||||
/deep/ .u-icon__icon{
|
/deep/ .u-icon__icon{
|
||||||
padding-bottom: 22rpx;
|
padding-bottom: 22rpx;
|
||||||
}
|
}
|
||||||
|
.bluetoothbox{
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #f4f1f6;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 99;
|
||||||
|
text-align: center;
|
||||||
|
.img{
|
||||||
|
margin-top: 400rpx;
|
||||||
|
width: 320rpx;
|
||||||
|
height: 320rpx;
|
||||||
|
}
|
||||||
|
.one{
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #000;
|
||||||
|
// margin-top: 80rpx;
|
||||||
|
}
|
||||||
|
.two{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.thr{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.anfour{
|
||||||
|
display: flex;
|
||||||
|
margin-top: 30rpx;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 0 220rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.qx{
|
||||||
|
width: 100rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #3D3D3D;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
.cx{
|
||||||
|
width: 200rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #8883F0;
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.stop{
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #000;
|
||||||
|
margin-top: 380rpx;
|
||||||
|
}
|
||||||
|
.xtop{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.xqx{
|
||||||
|
width: 530rpx;
|
||||||
|
height: 90rpx;
|
||||||
|
line-height: 90rpx;
|
||||||
|
// border: 1px solid #808080;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #fff;
|
||||||
|
margin: auto;
|
||||||
|
margin-top: 200rpx;
|
||||||
|
}
|
||||||
|
image{
|
||||||
|
width: 500rpx;
|
||||||
|
height: 500rpx;
|
||||||
|
margin-top: 100rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
page {
|
page {
|
||||||
background-color: #F7FAFE;
|
background-color: #F7FAFE;
|
||||||
}
|
}
|
||||||
|
@ -1064,6 +1202,7 @@
|
||||||
// flex-wrap: wrap;
|
// flex-wrap: wrap;
|
||||||
// align-items: center;
|
// align-items: center;
|
||||||
margin-top: 40rpx;
|
margin-top: 40rpx;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
.imgbox {
|
.imgbox {
|
||||||
// width: 33%;
|
// width: 33%;
|
||||||
image {
|
image {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="page">
|
<view class="page">
|
||||||
<u-navbar title="常见问题" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
|
<u-navbar :title="tit" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
|
||||||
height='50'></u-navbar>
|
height='50'></u-navbar>
|
||||||
<view class="box">
|
<view class="box">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
|
@ -18,7 +18,8 @@
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
type:'',
|
type:'',
|
||||||
listobj:{}
|
listobj:{},
|
||||||
|
tit:''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
@ -47,6 +48,7 @@
|
||||||
this.$u.get(`/app/article/licence/${this.type}`).then((res) => {
|
this.$u.get(`/app/article/licence/${this.type}`).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.listobj = res.data
|
this.listobj = res.data
|
||||||
|
this.tit = res.data.title
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
@ -22,22 +22,22 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li
|
<li
|
||||||
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 1 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 30">
|
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 1 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 30">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uTvQ7JtgSsBsTY99SKrF"
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ucHCSQoAToQAwajScBCs"
|
||||||
mode=""></image>
|
mode=""></image>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 29 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 51">
|
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 29 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 51">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uXM3mk2pJi73XeM9mVqG"
|
<image src="https://api.ccttiot.com/smartmeter/img/static/u99d7sacejXaGlsLedNx"
|
||||||
mode=""></image>
|
mode=""></image>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 50 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 70">
|
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 50 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 70">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uTTcLsrjxpw5asCMUZtR"
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ueL5rF2AGWamJzGpLMU9"
|
||||||
mode=""></image>
|
mode=""></image>
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 69">
|
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 69">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uOa0lsRfyLqH7CEYrgXx"
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uCN5HZjWwMqVQkbccAxa"
|
||||||
mode=""></image>
|
mode=""></image>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -54,11 +54,88 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="annius" style="display: flex;justify-content: space-between;">
|
<view class="annius" style="display: flex;justify-content: space-between;">
|
||||||
<view class="" @click="btnsd">手动输入WiFi</view>
|
<view class="" @click="btnsd">手动添加其他网络</view>
|
||||||
<view class="" @click="btnxyb">下一步</view>
|
<!-- <view class="" @click="btnxyb">下一步</view> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<!-- 蒙层 -->
|
||||||
|
<view class="mask" v-if="maskflag"></view>
|
||||||
|
<!-- 点击WiFi连接弹窗 -->
|
||||||
|
<view class="lianjie" v-if="maskflag">
|
||||||
|
<view class="wifitop">
|
||||||
|
连接网络
|
||||||
|
</view>
|
||||||
|
<view class="wifiname">
|
||||||
|
{{ssid}}
|
||||||
|
</view>
|
||||||
|
<view class="" v-if="passmm == true">
|
||||||
|
<input class="uni-input" v-model="password" type="text" placeholder="输入WiFi密码" />
|
||||||
|
<u-icon name="eye-fill" style="position: absolute;top: 184rpx;right: 60rpx;" @click="passmm = false"></u-icon>
|
||||||
|
</view>
|
||||||
|
<view class="" v-if="passmm == false">
|
||||||
|
<input class="uni-input" v-model="password" type="password" placeholder="输入WiFi密码" />
|
||||||
|
<u-icon name="eye-off" style="position: absolute;top: 184rpx;right: 60rpx;" @click="passmm = true"></u-icon>
|
||||||
|
</view>
|
||||||
|
<view class="butlj">
|
||||||
|
<view class="btnljqx" @click="maskflag = false">
|
||||||
|
取消
|
||||||
|
</view>
|
||||||
|
<view class="btnljqx" @click="content_wf" :class="textwifi == '连接中...' ? actives : ''">
|
||||||
|
{{textwifi}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 手动输入WiFi -->
|
||||||
|
<view class="mask" v-if="sdmaskflag"></view>
|
||||||
|
<!-- 点击WiFi连接弹窗 -->
|
||||||
|
<view class="lianjie" v-if="sdmaskflag">
|
||||||
|
<view class="wifitop">
|
||||||
|
手动添加
|
||||||
|
</view>
|
||||||
|
<input class="uni-input" v-model="ssid" type="text" placeholder="输入WiFi名称" />
|
||||||
|
<view class="" v-if="passmm == true">
|
||||||
|
<input class="uni-input" v-model="password" type="text" placeholder="输入WiFi密码" />
|
||||||
|
<u-icon name="eye-fill" style="position: absolute;top: 184rpx;right: 60rpx;" @click="passmm = false"></u-icon>
|
||||||
|
</view>
|
||||||
|
<view class="" v-if="passmm == false">
|
||||||
|
<input class="uni-input" v-model="password" type="password" placeholder="输入WiFi密码" />
|
||||||
|
<u-icon name="eye-off" style="position: absolute;top: 184rpx;right: 60rpx;" @click="passmm = true"></u-icon>
|
||||||
|
</view>
|
||||||
|
<view class="butlj">
|
||||||
|
<view class="btnljqx" @click="sdmaskflag = false">
|
||||||
|
取消
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
class="btnljqx"
|
||||||
|
@click="content_wf"
|
||||||
|
:class="{ 'actives': textwifi === '连接中...' }">
|
||||||
|
{{ textwifi }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 没有WiFi -->
|
||||||
|
<view class="bluetoothbox" v-if="list.length == 0">
|
||||||
|
<image class="img" src="https://api.ccttiot.com/smartmeter/img/static/uZH5T5qPm6VjuJbGbCpj" mode=""></image>
|
||||||
|
<view class="one">
|
||||||
|
发现网络失败
|
||||||
|
</view>
|
||||||
|
<view class="two">
|
||||||
|
请确保你的设备处于局域网范围内
|
||||||
|
</view>
|
||||||
|
<view class="anfour">
|
||||||
|
<view class="qx" @click="btnsd">
|
||||||
|
手动添加
|
||||||
|
</view>
|
||||||
|
<view class="cx" @click="btnwifi">
|
||||||
|
重新发现
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -72,6 +149,10 @@
|
||||||
// },nin
|
// },nin
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
passmm:false,
|
||||||
|
password:'',
|
||||||
|
sdmaskflag:false,
|
||||||
|
maskflag:false,
|
||||||
options: {},
|
options: {},
|
||||||
optionsobj: {},
|
optionsobj: {},
|
||||||
version: '2.0',
|
version: '2.0',
|
||||||
|
@ -86,10 +167,7 @@
|
||||||
wifiList: "",
|
wifiList: "",
|
||||||
item: '',
|
item: '',
|
||||||
textwb: '重新扫描',
|
textwb: '重新扫描',
|
||||||
list: [{
|
list: [],
|
||||||
BSSID: '',
|
|
||||||
SSID: ''
|
|
||||||
}],
|
|
||||||
picflag: false,
|
picflag: false,
|
||||||
indexs: -1,
|
indexs: -1,
|
||||||
wififlag: true, //wifi列表flag
|
wififlag: true, //wifi列表flag
|
||||||
|
@ -100,6 +178,7 @@
|
||||||
bgc: {
|
bgc: {
|
||||||
backgroundColor: "#8883f0",
|
backgroundColor: "#8883f0",
|
||||||
},
|
},
|
||||||
|
textwifi:'连接'
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -190,18 +269,18 @@
|
||||||
});
|
});
|
||||||
// 去重
|
// 去重
|
||||||
for (var i = 0; i < that.wifiList.length; i++) {
|
for (var i = 0; i < that.wifiList.length; i++) {
|
||||||
for (var j = i + 1; j < that.wifiList
|
for (var j = i + 1; j < that.wifiList.length; j++) {
|
||||||
.length; j++) {
|
if (that.wifiList[i].SSID == that.wifiList[j].SSID) {
|
||||||
if (that.wifiList[i].SSID == that.wifiList[j]
|
|
||||||
.SSID) {
|
|
||||||
that.wifiList.splice(j, 1);
|
that.wifiList.splice(j, 1);
|
||||||
j--
|
j--
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
that.signalStrengthflag = true
|
that.signalStrengthflag = true
|
||||||
that.list = that.wifiList
|
that.list = that.wifiList.filter(item => {
|
||||||
console.log(that.list, '1010'); //在这里提取列表数据
|
return item.SSID !== ''
|
||||||
|
})
|
||||||
|
// console.log(that.list, '1010'); //在这里提取列表数据
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
fail: function(err) {
|
fail: function(err) {
|
||||||
|
@ -289,8 +368,9 @@
|
||||||
|
|
||||||
// 点击判断索引是否相同显示图片
|
// 点击判断索引是否相同显示图片
|
||||||
btnqhwifi(index, item) {
|
btnqhwifi(index, item) {
|
||||||
this.indexs = index
|
// this.indexs = index
|
||||||
this.ssid = item.SSID
|
this.ssid = item.SSID
|
||||||
|
this.maskflag = true
|
||||||
},
|
},
|
||||||
// 点击进行下一步
|
// 点击进行下一步
|
||||||
btnxyb() {
|
btnxyb() {
|
||||||
|
@ -309,16 +389,17 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
btnsd() {
|
btnsd() {
|
||||||
|
this.sdmaskflag = true
|
||||||
this.ssid = ''
|
this.ssid = ''
|
||||||
uni.navigateTo({
|
// uni.navigateTo({
|
||||||
url: '/page_user/wifijoint/index?objlist=' + JSON.stringify(this.objlist) + '&ssid=' + JSON.stringify(this.ssid)
|
// url: '/page_user/wifijoint/index?objlist=' + JSON.stringify(this.objlist) + '&ssid=' + JSON.stringify(this.ssid)
|
||||||
})
|
// })
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
// 点击连接操作
|
// 点击连接操作
|
||||||
content_wf() {
|
content_wf() {
|
||||||
if (!this.name) {
|
if (!this.ssid) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: 'SSID不能为空',
|
title: 'SSID不能为空',
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
|
@ -332,12 +413,13 @@
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
uni.showLoading({
|
// uni.showLoading({
|
||||||
title: '正在配网',
|
// title: '正在配网',
|
||||||
mask: true
|
// mask: true
|
||||||
})
|
// })
|
||||||
|
this.textwifi = '连接中...'
|
||||||
xBlufi.notifySendCustomData({
|
xBlufi.notifySendCustomData({
|
||||||
customData: "ssid@" + this.name + "pass@" + this.password
|
customData: "ssid@" + this.ssid + "pass@" + this.password
|
||||||
})
|
})
|
||||||
// xBlufi.notifySendCustomData({
|
// xBlufi.notifySendCustomData({
|
||||||
// customData: "ssid@" + this.name
|
// customData: "ssid@" + this.name
|
||||||
|
@ -355,31 +437,33 @@
|
||||||
funListenDeviceMsgEvent: function(options) {
|
funListenDeviceMsgEvent: function(options) {
|
||||||
let that = this;
|
let that = this;
|
||||||
switch (options.type) {
|
switch (options.type) {
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_STATUS_CONNECTED: {
|
// case xBlufi.XBLUFI_TYPE.TYPE_STATUS_CONNECTED: {
|
||||||
console.log('状态', options.result)
|
// console.log('状态', options.result)
|
||||||
uni.showModal({
|
// this.textwifi = '连接'
|
||||||
title: '很抱歉提醒你!',
|
// uni.showModal({
|
||||||
content: '蓝牙异常断开,请重新连接…',
|
// title: '很抱歉提醒你!',
|
||||||
showCancel: false,
|
// content: '蓝牙异常断开,请重新连接…',
|
||||||
success: function(res) {
|
// showCancel: false,
|
||||||
uni.navigateTo({
|
// success: function(res) {
|
||||||
url:'/pages/index/index'
|
// uni.switchTab({
|
||||||
})
|
// url:'/pages/index/index'
|
||||||
}
|
// })
|
||||||
});
|
// }
|
||||||
this.statusflag = false
|
// });
|
||||||
uni.hideLoading();
|
// this.statusflag = false
|
||||||
}
|
// uni.hideLoading();
|
||||||
break;
|
// }
|
||||||
|
// break;
|
||||||
|
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_CONNECT_ROUTER_RESULT:
|
case xBlufi.XBLUFI_TYPE.TYPE_CONNECT_ROUTER_RESULT:
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
if (!options.result)
|
if (!options.result)
|
||||||
|
this.textwifi = '连接',
|
||||||
this.statusflag = false,
|
this.statusflag = false,
|
||||||
uni.hideLoading(),
|
uni.hideLoading(),
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '温馨提示',
|
title: '温馨提示',
|
||||||
content: '配网失败,请重试',
|
content: '配网失败,请选择2.4GWiFi连接并确保密码正确',
|
||||||
showCancel: false //是否显示取消按钮
|
showCancel: false //是否显示取消按钮
|
||||||
});
|
});
|
||||||
else {
|
else {
|
||||||
|
@ -387,6 +471,7 @@
|
||||||
let ssid = options.data.ssid;
|
let ssid = options.data.ssid;
|
||||||
this.statusflag = false
|
this.statusflag = false
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
|
this.textwifi = '连接'
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '温馨提示',
|
title: '温馨提示',
|
||||||
content: `连接成功`,
|
content: `连接成功`,
|
||||||
|
@ -430,13 +515,13 @@
|
||||||
console.log('初始化失败');
|
console.log('初始化失败');
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '温馨提示',
|
title: '温馨提示',
|
||||||
content: `设备初始化失败`,
|
content: `设备初始化失败,请重新连接`,
|
||||||
showCancel: false,
|
showCancel: false,
|
||||||
//是否显示取消按钮
|
//是否显示取消按钮
|
||||||
success: function(res) {
|
success: function(res) {
|
||||||
// uni.redirectTo({
|
uni.switchTab({
|
||||||
// url: '../search/search'
|
url:'/pages/index/index'
|
||||||
// });
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -476,10 +561,101 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less">
|
<style lang="less">
|
||||||
|
.bluetoothbox{
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #f4f1f6;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 98;
|
||||||
|
text-align: center;
|
||||||
|
.img{
|
||||||
|
margin-top: 400rpx;
|
||||||
|
}
|
||||||
|
.one{
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #000;
|
||||||
|
// margin-top: 80rpx;
|
||||||
|
}
|
||||||
|
.two{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.thr{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.anfour{
|
||||||
|
display: flex;
|
||||||
|
margin-top: 30rpx;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 0 160rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.qx{
|
||||||
|
width: 200rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #3D3D3D;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
.cx{
|
||||||
|
width: 200rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #8883F0;
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.stop{
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #000;
|
||||||
|
margin-top: 380rpx;
|
||||||
|
}
|
||||||
|
.xtop{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.xqx{
|
||||||
|
width: 530rpx;
|
||||||
|
height: 90rpx;
|
||||||
|
line-height: 90rpx;
|
||||||
|
// border: 1px solid #808080;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #fff;
|
||||||
|
margin: auto;
|
||||||
|
margin-top: 200rpx;
|
||||||
|
}
|
||||||
|
image{
|
||||||
|
width: 320rpx;
|
||||||
|
height: 320rpx;
|
||||||
|
margin-top: 100rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.actives{
|
||||||
|
opacity: .5 !important;
|
||||||
|
}
|
||||||
//wifi信号强度显示
|
//wifi信号强度显示
|
||||||
.wifiactive {
|
.wifiactive {
|
||||||
background-color: limegreen !important;
|
background-color: limegreen !important;
|
||||||
}
|
}
|
||||||
|
.mask{
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #000;
|
||||||
|
opacity: .3;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 99;
|
||||||
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -505,7 +681,7 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 10rpx;
|
margin-top: 10rpx;
|
||||||
width: 50rpx;
|
width: 50rpx;
|
||||||
height: 42rpx;
|
height: 52rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.annius{
|
.annius{
|
||||||
|
@ -519,13 +695,13 @@
|
||||||
font-size: 38rpx;
|
font-size: 38rpx;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
view{
|
view{
|
||||||
color: #FFFFFF;
|
|
||||||
height: 96rpx;
|
height: 96rpx;
|
||||||
border-radius: 30rpx;
|
border-radius: 30rpx;
|
||||||
line-height: 96rpx;
|
line-height: 96rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 44%;
|
width: 100%;
|
||||||
background-color: #8883F0 !important;
|
// background-color: #8883F0 !important;
|
||||||
|
color: #8883F0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -533,7 +709,47 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.lianjie{
|
||||||
|
width: 520rpx;
|
||||||
|
height: 320rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
position: fixed;
|
||||||
|
top: 30%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
z-index: 99;
|
||||||
|
padding: 30rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.wifitop{
|
||||||
|
font-size: 32rpx;
|
||||||
|
}
|
||||||
|
.wifiname{
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #ccc;
|
||||||
|
margin-top: 30rpx;
|
||||||
|
}
|
||||||
|
input{
|
||||||
|
width: 79%;
|
||||||
|
margin-top: 30rpx;
|
||||||
|
color: #000;
|
||||||
|
font-size: 30rpx;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
}
|
||||||
|
.butlj{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
text-align: center;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-top: 30rpx;
|
||||||
|
.btnljqx{
|
||||||
|
font-size: 32rpx;
|
||||||
|
color: #8883F0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
// 点击关闭弹出弹窗提示
|
// 点击关闭弹出弹窗提示
|
||||||
.tanctitle {
|
.tanctitle {
|
||||||
width: 500rpx;
|
width: 500rpx;
|
||||||
|
|
|
@ -165,6 +165,44 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="mask" v-if="vipflag"></view>
|
<view class="mask" v-if="vipflag"></view>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 蓝牙连接 -->
|
||||||
|
<view class="bluetoothbox" v-if="bluetoothflag">
|
||||||
|
<view class="stop">
|
||||||
|
正在连接该设备蓝牙
|
||||||
|
</view>
|
||||||
|
<view class="xtop">
|
||||||
|
请将手机与设备尽量靠近
|
||||||
|
</view>
|
||||||
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ucDphMKsozqwwllJTAKL" mode=""></image>
|
||||||
|
<!-- <view class="xqx" @click="bluetoothflag = false">
|
||||||
|
取消连接
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 蓝牙连接失败 -->
|
||||||
|
<view class="bluetoothbox" v-if="shibaiflag">
|
||||||
|
<image class="img" src="https://api.ccttiot.com/smartmeter/img/static/uTb3vSlbcHdPMFQMBjyL" mode=""></image>
|
||||||
|
<view class="one">
|
||||||
|
蓝牙连接失败
|
||||||
|
</view>
|
||||||
|
<view class="two">
|
||||||
|
请确保手机足够靠近设备
|
||||||
|
</view>
|
||||||
|
<view class="thr">
|
||||||
|
并且设备处于上电状态
|
||||||
|
</view>
|
||||||
|
<view class="anfour">
|
||||||
|
<view class="qx" @click="btnlyqx">
|
||||||
|
取消
|
||||||
|
</view>
|
||||||
|
<view class="cx" @click="topage(5)">
|
||||||
|
重新连接
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -179,6 +217,8 @@
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
bluetoothflag:false,
|
||||||
|
shibaiflag:false,
|
||||||
bgc: {
|
bgc: {
|
||||||
backgroundColor: "#8883f0",
|
backgroundColor: "#8883f0",
|
||||||
},
|
},
|
||||||
|
@ -215,7 +255,7 @@
|
||||||
vipflag:false,
|
vipflag:false,
|
||||||
cztime:'',
|
cztime:'',
|
||||||
opflag:true,
|
opflag:true,
|
||||||
timer: null
|
timer: null,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
@ -325,6 +365,10 @@
|
||||||
// })
|
// })
|
||||||
// },
|
// },
|
||||||
methods: {
|
methods: {
|
||||||
|
btnlyqx(){
|
||||||
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = false
|
||||||
|
},
|
||||||
// 开启和关闭
|
// 开启和关闭
|
||||||
btnkq(){
|
btnkq(){
|
||||||
if(this.tdtxt == '开启'){
|
if(this.tdtxt == '开启'){
|
||||||
|
@ -635,12 +679,14 @@
|
||||||
url: '/page_user/setting?id=' + this.id
|
url: '/page_user/setting?id=' + this.id
|
||||||
})
|
})
|
||||||
} else if (num == 5) {
|
} else if (num == 5) {
|
||||||
uni.showLoading({
|
// uni.showLoading({
|
||||||
title: '蓝牙连接中...'
|
// title: '蓝牙连接中...'
|
||||||
})
|
// })
|
||||||
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = true
|
||||||
// console.log(this.deviceId,'idididididdidii');
|
// console.log(this.deviceId,'idididididdidii');
|
||||||
if(this.deviceId == ''){
|
if(this.setMode == null){
|
||||||
xBlufi.initXBlufi(1);
|
xBlufi.initXBlufi(1)
|
||||||
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
|
||||||
xBlufi.notifyStartDiscoverBle({
|
xBlufi.notifyStartDiscoverBle({
|
||||||
'isStart': true
|
'isStart': true
|
||||||
|
@ -670,12 +716,9 @@
|
||||||
}
|
}
|
||||||
this.$u.put('/app/device/bind', data).then((res) => {
|
this.$u.put('/app/device/bind', data).then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
// uni.showToast({
|
|
||||||
// title: '绑定成功',
|
|
||||||
// icon: 'success',
|
|
||||||
// duration: 2000
|
|
||||||
// })
|
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.removeStorageSync('mac');
|
uni.removeStorageSync('mac');
|
||||||
let systemInfo = uni.getSystemInfoSync();
|
let systemInfo = uni.getSystemInfoSync();
|
||||||
if (systemInfo.platform == 'android') {
|
if (systemInfo.platform == 'android') {
|
||||||
|
@ -690,11 +733,13 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}else if(res.msg == '设备编号和mac不能同时为空'){
|
}else if(res.msg == '设备编号和mac不能同时为空'){
|
||||||
uni.showToast({
|
this.shibaiflag = true
|
||||||
title: '未找到设备',
|
this.bluetoothflag = false
|
||||||
icon: 'none',
|
// uni.showToast({
|
||||||
duration: 2000
|
// title: '连接失败',
|
||||||
});
|
// icon: 'none',
|
||||||
|
// duration: 2000
|
||||||
|
// });
|
||||||
} else {
|
} else {
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title: res.msg,
|
// title: res.msg,
|
||||||
|
@ -722,6 +767,8 @@
|
||||||
// icon: 'none',
|
// icon: 'none',
|
||||||
// duration: 2000
|
// duration: 2000
|
||||||
// })
|
// })
|
||||||
|
this.shibaiflag = false
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
uni.removeStorageSync('mac');
|
uni.removeStorageSync('mac');
|
||||||
let systemInfo = uni.getSystemInfoSync();
|
let systemInfo = uni.getSystemInfoSync();
|
||||||
|
@ -738,13 +785,17 @@
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
if(res.msg == '设备编号和mac不能同时为空'){
|
if(res.msg == '设备编号和mac不能同时为空'){
|
||||||
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.hideLoading()
|
uni.hideLoading()
|
||||||
uni.showToast({
|
// uni.showToast({
|
||||||
title: '未找到设备',
|
// title: '连接失败',
|
||||||
icon: 'none',
|
// icon: 'none',
|
||||||
duration: 2000
|
// duration: 2000
|
||||||
})
|
// })
|
||||||
} else {
|
} else {
|
||||||
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.hideLoading()
|
uni.hideLoading()
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title:res.msg,
|
title:res.msg,
|
||||||
|
@ -852,6 +903,7 @@
|
||||||
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
|
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
|
||||||
// console.log("连接回调:" + JSON.stringify(options));
|
// console.log("连接回调:" + JSON.stringify(options));
|
||||||
if (options.result) {
|
if (options.result) {
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title: '连接成功',
|
// title: '连接成功',
|
||||||
|
@ -862,6 +914,8 @@
|
||||||
"连接回调options.data.name:" + options.data.name);
|
"连接回调options.data.name:" + options.data.name);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
this.shibaiflag = true
|
||||||
|
this.bluetoothflag = false
|
||||||
uni.hideLoading()
|
uni.hideLoading()
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
// title: '设备离线或不在范围内',
|
// title: '设备离线或不在范围内',
|
||||||
|
@ -876,6 +930,7 @@
|
||||||
if (!options.result) {
|
if (!options.result) {
|
||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
uni.hideLoading()
|
uni.hideLoading()
|
||||||
|
this.bluetoothflag = false
|
||||||
},3000)
|
},3000)
|
||||||
console.log("蓝牙未开启", options);
|
console.log("蓝牙未开启", options);
|
||||||
// uni.showToast({
|
// uni.showToast({
|
||||||
|
@ -959,6 +1014,86 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
.bluetoothbox{
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #f4f1f6;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 99;
|
||||||
|
text-align: center;
|
||||||
|
.img{
|
||||||
|
margin-top: 400rpx;
|
||||||
|
width: 320rpx;
|
||||||
|
height: 320rpx;
|
||||||
|
}
|
||||||
|
.one{
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #000;
|
||||||
|
// margin-top: 80rpx;
|
||||||
|
}
|
||||||
|
.two{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.thr{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.anfour{
|
||||||
|
display: flex;
|
||||||
|
margin-top: 30rpx;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 0 220rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.qx{
|
||||||
|
width: 100rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #3D3D3D;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
.cx{
|
||||||
|
width: 200rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #8883F0;
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.stop{
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #000;
|
||||||
|
margin-top: 380rpx;
|
||||||
|
}
|
||||||
|
.xtop{
|
||||||
|
margin-top: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
.xqx{
|
||||||
|
width: 530rpx;
|
||||||
|
height: 90rpx;
|
||||||
|
line-height: 90rpx;
|
||||||
|
// border: 1px solid #808080;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #fff;
|
||||||
|
margin: auto;
|
||||||
|
margin-top: 200rpx;
|
||||||
|
}
|
||||||
|
image{
|
||||||
|
width: 500rpx;
|
||||||
|
height: 500rpx;
|
||||||
|
margin-top: 100rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
/deep/ .u-title {
|
/deep/ .u-title {
|
||||||
padding-bottom: 22rpx;
|
padding-bottom: 22rpx;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,10 +17,11 @@
|
||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "我的",
|
"navigationBarTitleText": "我的",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": true,
|
||||||
"navigationBarBackgroundColor": "#3996FD",
|
"navigationBarBackgroundColor": "#3996FD",
|
||||||
"navigationBarTextStyle": "#FFFFFF",
|
"navigationBarTextStyle": "#FFFFFF",
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="tit">
|
<view class="tit">
|
||||||
店铺管理
|
<!-- 店铺管理 -->
|
||||||
</view>
|
</view>
|
||||||
<view class="txt" @click="tosetpage()">
|
<view class="txt" @click="tosetpage()">
|
||||||
管理
|
管理
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
未分配店铺
|
未分配店铺
|
||||||
</view>
|
</view>
|
||||||
<view v-else :class="item.onlineStatus == 0 ? 'activewzgl' : ''" style="color: #95989D;margin-top: 20rpx;" @click="todetail(item.deviceId)">
|
<view v-else :class="item.onlineStatus == 0 ? 'activewzgl' : ''" style="color: #95989D;margin-top: 20rpx;" @click="todetail(item.deviceId)">
|
||||||
归属店铺: {{item.storeName == null ? '--' : item.storeName}} | <text v-if="item.onlineStatus == 1" style="margin-left: 10rpx;">在线</text> <text v-else>离线</text>
|
归属店铺: {{item.storeName == null ? '--' : item.storeName}} <text v-if="item.onlineStatus == 0" style="margin-left: 10rpx;">| 离线</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="card_right" @click="todetail(item.deviceId)">
|
<view class="card_right" @click="todetail(item.deviceId)">
|
||||||
|
@ -145,6 +145,8 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="tip">需要添加设备后方可使用</view>
|
<view class="tip">需要添加设备后方可使用</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
|
|
||||||
|
<image v-if="curtitidx == 0" class="saoyisao" @click="saoyisao" src="https://api.ccttiot.com/smartmeter/img/static/u165t8tHqFQxSg0lrt1P" mode=""></image>
|
||||||
|
|
||||||
<tab-bar :indexs='0'></tab-bar>
|
<tab-bar :indexs='0'></tab-bar>
|
||||||
|
|
||||||
|
@ -218,6 +220,16 @@
|
||||||
onLoad() {
|
onLoad() {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
onPullDownRefresh() {
|
||||||
|
this.pagenum = 1
|
||||||
|
// 执行数据加载
|
||||||
|
this.getlist()
|
||||||
|
|
||||||
|
// 设置一个定时器,2秒后停止下拉刷新动画
|
||||||
|
setTimeout(() => {
|
||||||
|
uni.stopPullDownRefresh();
|
||||||
|
}, 500); // 停止下拉刷新
|
||||||
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
this.gettanc()
|
this.gettanc()
|
||||||
this.pagenum = 1
|
this.pagenum = 1
|
||||||
|
@ -278,6 +290,82 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 扫一扫绑定设备
|
||||||
|
saoyisao(){
|
||||||
|
uni.scanCode({
|
||||||
|
onlyFromCamera: true,
|
||||||
|
scanType: ['qrCode'],
|
||||||
|
success: res => {
|
||||||
|
function getQueryParam(url, paramName) {
|
||||||
|
let regex = new RegExp(`[?&]${paramName}=([^&]*)`)
|
||||||
|
let results = regex.exec(url);
|
||||||
|
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null
|
||||||
|
}
|
||||||
|
let sceneValue = res.result
|
||||||
|
let decodedValue = decodeURIComponent(sceneValue)
|
||||||
|
let id = getQueryParam(decodedValue, 's')
|
||||||
|
// console.log(res, id)
|
||||||
|
let that = this
|
||||||
|
let data = {
|
||||||
|
deviceNo: id
|
||||||
|
}
|
||||||
|
that.$u.get(`/app/device/isBind?deviceNo=${id}`).then(res => {
|
||||||
|
if (res.data == 2) {
|
||||||
|
that.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_components/fuwu/index?id=' + id
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else if (res.data == 1) {
|
||||||
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '该设备未绑定,你需进行绑定吗?',
|
||||||
|
success: function(res) {
|
||||||
|
if (res.confirm) {
|
||||||
|
that.$u.put("/app/device/bind", data).then(res => {
|
||||||
|
if(res.code == 200){
|
||||||
|
that.$u.get(`/app/device/${id}/bySn`).then((res) => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else if (res.cancel) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else if (res.data == 0) {
|
||||||
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '该设备未录入,你需进行录入吗?',
|
||||||
|
success: function(res) {
|
||||||
|
if (res.confirm) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/zhuce?sn=' + id
|
||||||
|
})
|
||||||
|
} else if (res.cancel) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
fail: err => {
|
||||||
|
console.error('扫描失败:', err)
|
||||||
|
uni.showToast({
|
||||||
|
title: '扫描失败',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
// 获取店铺
|
// 获取店铺
|
||||||
sremakes(item) {
|
sremakes(item) {
|
||||||
|
@ -794,9 +882,9 @@
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
swiperchange(e) {
|
swiperchange(e) {
|
||||||
uni.showLoading({
|
// uni.showLoading({
|
||||||
title: '加载中...'
|
// title: '加载中...'
|
||||||
});
|
// });
|
||||||
// this.wateringList = []
|
// this.wateringList = []
|
||||||
this.pagenum = 1
|
this.pagenum = 1
|
||||||
this.curtitidx = e.detail.current
|
this.curtitidx = e.detail.current
|
||||||
|
@ -857,6 +945,14 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
.saoyisao{
|
||||||
|
width: 90rpx;
|
||||||
|
height: 90rpx;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 240rpx;
|
||||||
|
right: 60rpx;
|
||||||
|
z-index: 99;
|
||||||
|
}
|
||||||
.title {
|
.title {
|
||||||
padding-left: 32rpx;
|
padding-left: 32rpx;
|
||||||
font-size: 40rpx;
|
font-size: 40rpx;
|
||||||
|
|
49
pages/my.vue
49
pages/my.vue
|
@ -5,9 +5,9 @@
|
||||||
id="navbar">
|
id="navbar">
|
||||||
</u-navbar>
|
</u-navbar>
|
||||||
|
|
||||||
<view class="fdpage" style="padding-bottom: 200rpx;">
|
<view class="fdpage">
|
||||||
<view class="top_box">
|
<view class="top_box">
|
||||||
<view class="userinfo">
|
<view class="userinfo" @click="topage(5)">
|
||||||
<view class="info">
|
<view class="info">
|
||||||
<view class="username">
|
<view class="username">
|
||||||
{{userinfo.nickName == null ? '' : userinfo.nickName}}
|
{{userinfo.nickName == null ? '' : userinfo.nickName}}
|
||||||
|
@ -16,6 +16,12 @@
|
||||||
共{{userinfo.storeCount == null ? 0 : userinfo.storeCount}}间店铺
|
共{{userinfo.storeCount == null ? 0 : userinfo.storeCount}}间店铺
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="">
|
||||||
|
<!-- <view class="botcard" @click="topage(5)">
|
||||||
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uYWpW30vIQ6M4svb7Vnb"></image>
|
||||||
|
<view class="txt">设置</view>
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="tit">
|
<!-- <view class="tit">
|
||||||
我的钱包
|
我的钱包
|
||||||
|
@ -59,6 +65,10 @@
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uYOquvGtfb1sm5F60NgJ" mode=""></image>
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uYOquvGtfb1sm5F60NgJ" mode=""></image>
|
||||||
<view class="txt">提交申请后可创建店铺</view>
|
<view class="txt">提交申请后可创建店铺</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="botcard" @click="btnguanli">
|
||||||
|
<image src="https://api.ccttiot.com/smartmeter/img/static/umjPUc8nDKf1JwVqRAeb" mode=""></image>
|
||||||
|
<view class="txt">套餐管理</view>
|
||||||
|
</view>
|
||||||
<view class="botcard" @click="topage(1)">
|
<view class="botcard" @click="topage(1)">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/ujXfMLJmerXRSRGZfGFV" mode=""></image>
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ujXfMLJmerXRSRGZfGFV" mode=""></image>
|
||||||
<view class="txt">订单记录</view>
|
<view class="txt">订单记录</view>
|
||||||
|
@ -79,14 +89,11 @@
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uCtxeWyTyH2DHQZaRv5Q" mode=""></image>
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uCtxeWyTyH2DHQZaRv5Q" mode=""></image>
|
||||||
<view class="txt">秘钥管理</view>
|
<view class="txt">秘钥管理</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="botcard" @click="btnguanli">
|
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/umjPUc8nDKf1JwVqRAeb" mode=""></image>
|
<!-- <view class="botcard" @click="topage(5)">
|
||||||
<view class="txt">套餐管理</view>
|
|
||||||
</view>
|
|
||||||
<view class="botcard" @click="topage(5)">
|
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uYWpW30vIQ6M4svb7Vnb"></image>
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uYWpW30vIQ6M4svb7Vnb"></image>
|
||||||
<view class="txt">设置</view>
|
<view class="txt">设置</view>
|
||||||
</view>
|
</view> -->
|
||||||
|
|
||||||
<!-- <view class="botcard" style="padding-left: 220rpx;font-size: 40rpx;font-weight: 600;" @click="btntc">
|
<!-- <view class="botcard" style="padding-left: 220rpx;font-size: 40rpx;font-weight: 600;" @click="btntc">
|
||||||
切换用户端
|
切换用户端
|
||||||
|
@ -336,6 +343,29 @@ page{
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.botcard{
|
||||||
|
// margin-bottom: 32rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-left: 12rpx;
|
||||||
|
width: 190rpx;
|
||||||
|
height: 66rpx;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1);
|
||||||
|
image{
|
||||||
|
width: 52rpx;
|
||||||
|
height: 52rpx;
|
||||||
|
margin-right: 32rpx
|
||||||
|
;
|
||||||
|
}
|
||||||
|
.txt{
|
||||||
|
font-size: 30rpx;
|
||||||
|
font-family: Source Han Sans, Source Han Sans;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #383838;
|
||||||
|
}
|
||||||
|
}
|
||||||
.fdpage{
|
.fdpage{
|
||||||
.top_box{
|
.top_box{
|
||||||
padding-top: 40rpx;
|
padding-top: 40rpx;
|
||||||
|
@ -344,9 +374,12 @@ page{
|
||||||
background-color: #8883F0;
|
background-color: #8883F0;
|
||||||
.userinfo{
|
.userinfo{
|
||||||
margin-left: 56rpx;
|
margin-left: 56rpx;
|
||||||
|
padding-right: 56rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-content: flex-start;
|
align-content: flex-start;
|
||||||
|
justify-content: space-between;
|
||||||
.img{
|
.img{
|
||||||
width: 100rpx;
|
width: 100rpx;
|
||||||
height: 100rpx;
|
height: 100rpx;
|
||||||
|
|
|
@ -125,7 +125,9 @@
|
||||||
},
|
},
|
||||||
deviceobj: {},
|
deviceobj: {},
|
||||||
deviceCount: 0,
|
deviceCount: 0,
|
||||||
sylist: []
|
sylist: [],
|
||||||
|
networkInterval:null,
|
||||||
|
wangluo:true
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
|
@ -199,6 +201,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
|
|
||||||
this.logins()
|
this.logins()
|
||||||
this.getad()
|
this.getad()
|
||||||
this.gethuidaio()
|
this.gethuidaio()
|
||||||
|
@ -214,8 +217,32 @@
|
||||||
clearInterval(this.mapScaleInterval)
|
clearInterval(this.mapScaleInterval)
|
||||||
this.mapScaleInterval = null
|
this.mapScaleInterval = null
|
||||||
}
|
}
|
||||||
|
// 检测网络状态
|
||||||
|
if (this.networkInterval) {
|
||||||
|
clearInterval(this.networkInterval);
|
||||||
|
this.networkInterval = null;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
startNetworkCheck() {
|
||||||
|
this.networkInterval = setInterval(() => {
|
||||||
|
uni.getNetworkType({
|
||||||
|
success: (res) => {
|
||||||
|
// console.log(res);
|
||||||
|
if (res.networkType == "none") {
|
||||||
|
this.wangluo = false
|
||||||
|
} else {
|
||||||
|
this.wangluo = true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fail: (err) => {
|
||||||
|
console.error('获取网络类型失败', err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, 3000);
|
||||||
|
},
|
||||||
|
|
||||||
// 请求正在使用的设备列表
|
// 请求正在使用的设备列表
|
||||||
getshiy() {
|
getshiy() {
|
||||||
this.$u.get("/app/device/usingDevice").then((res) => {
|
this.$u.get("/app/device/usingDevice").then((res) => {
|
||||||
|
@ -269,80 +296,95 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
scanQRCode() {
|
scanQRCode() {
|
||||||
uni.scanCode({
|
if(this.wangluo == true){
|
||||||
onlyFromCamera: true,
|
uni.scanCode({
|
||||||
scanType: ['qrCode'],
|
onlyFromCamera: true,
|
||||||
success: res => {
|
scanType: ['qrCode'],
|
||||||
function getQueryParam(url, paramName) {
|
success: res => {
|
||||||
let regex = new RegExp(`[?&]${paramName}=([^&]*)`)
|
function getQueryParam(url, paramName) {
|
||||||
let results = regex.exec(url);
|
let regex = new RegExp(`[?&]${paramName}=([^&]*)`)
|
||||||
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null
|
let results = regex.exec(url);
|
||||||
}
|
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null
|
||||||
let sceneValue = res.result
|
}
|
||||||
let decodedValue = decodeURIComponent(sceneValue)
|
let sceneValue = res.result
|
||||||
let id = getQueryParam(decodedValue, 's')
|
let decodedValue = decodeURIComponent(sceneValue)
|
||||||
// console.log(res, id)
|
let id = getQueryParam(decodedValue, 's')
|
||||||
let that = this
|
// console.log(res, id)
|
||||||
let data = {
|
let that = this
|
||||||
deviceNo: id
|
let data = {
|
||||||
}
|
deviceNo: id
|
||||||
that.$u.get(`/app/device/isBind?deviceNo=${id}`).then(res => {
|
}
|
||||||
if (res.data == 2) {
|
that.$u.get(`/app/device/isBind?deviceNo=${id}`).then(res => {
|
||||||
that.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
|
if (res.data == 2) {
|
||||||
if (res.code == 200) {
|
that.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
|
||||||
uni.navigateTo({
|
if (res.code == 200) {
|
||||||
url: '/page_components/fuwu/index?id=' + id
|
uni.navigateTo({
|
||||||
})
|
url: '/page_components/fuwu/index?id=' + id
|
||||||
}
|
})
|
||||||
})
|
}
|
||||||
} else if (res.data == 1) {
|
})
|
||||||
uni.showModal({
|
} else if (res.data == 1) {
|
||||||
title: '提示',
|
uni.showModal({
|
||||||
content: '该设备未绑定,你需进行绑定吗?',
|
title: '提示',
|
||||||
success: function(res) {
|
content: '该设备未绑定,你需进行绑定吗?',
|
||||||
if (res.confirm) {
|
success: function(res) {
|
||||||
that.$u.put("/app/device/bind", data).then(res => {
|
if (res.confirm) {
|
||||||
if(res.code == 200){
|
that.$u.put("/app/device/bind", data).then(res => {
|
||||||
that.$u.get(`/app/device/${id}/bySn`).then((res) => {
|
if(res.code == 200){
|
||||||
if (res.code == 200) {
|
that.$u.get(`/app/device/${id}/bySn`).then((res) => {
|
||||||
uni.navigateTo({
|
if (res.code == 200) {
|
||||||
url: '/page_components/bindsz?id=' + res.data.deviceId
|
uni.navigateTo({
|
||||||
})
|
url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||||
}
|
})
|
||||||
})
|
}
|
||||||
}
|
})
|
||||||
})
|
}
|
||||||
} else if (res.cancel) {
|
})
|
||||||
|
} else if (res.cancel) {
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
} else if (res.data == 0) {
|
})
|
||||||
uni.showModal({
|
} else if (res.data == 0) {
|
||||||
title: '提示',
|
uni.showModal({
|
||||||
content: '该设备未录入,你需进行录入吗?',
|
title: '提示',
|
||||||
success: function(res) {
|
content: '该设备未录入,你需进行录入吗?',
|
||||||
if (res.confirm) {
|
success: function(res) {
|
||||||
uni.navigateTo({
|
if (res.confirm) {
|
||||||
url: '/page_fenbao/zhuce?sn=' + id
|
uni.navigateTo({
|
||||||
})
|
url: '/page_fenbao/zhuce?sn=' + id
|
||||||
} else if (res.cancel) {
|
})
|
||||||
|
} else if (res.cancel) {
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
}
|
})
|
||||||
})
|
}
|
||||||
},
|
})
|
||||||
fail: err => {
|
},
|
||||||
console.error('扫描失败:', err)
|
fail: err => {
|
||||||
uni.showToast({
|
console.error('扫描失败:', err)
|
||||||
title: '扫描失败',
|
uni.showToast({
|
||||||
icon: 'none'
|
title: '扫描失败',
|
||||||
})
|
icon: 'none'
|
||||||
}
|
})
|
||||||
})
|
}
|
||||||
|
})
|
||||||
|
}else{
|
||||||
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '请打开网络再进行操作',
|
||||||
|
success: function(res) {
|
||||||
|
if (res.confirm) {
|
||||||
|
|
||||||
|
} else if (res.cancel) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
getad() {
|
getad() {
|
||||||
this.$u.get("/app/ad").then((res) => {
|
this.$u.get("/app/ad").then((res) => {
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
|
@ -353,34 +395,48 @@
|
||||||
|
|
||||||
|
|
||||||
btnindex(num) {
|
btnindex(num) {
|
||||||
if (num == 2) {
|
if(this.wangluo = false){ //判断是否有网络在进行点击
|
||||||
uni.navigateTo({
|
uni.showModal({
|
||||||
url: '/page_fenbao/statulist/question/index'
|
title: '提示',
|
||||||
})
|
content: '请打开网络再进行操作',
|
||||||
} else if (num == 3) {
|
success: function(res) {
|
||||||
uni.navigateTo({
|
if (res.confirm) {
|
||||||
url: '/page_fenbao/statulist/about/index'
|
|
||||||
})
|
} else if (res.cancel) {
|
||||||
} else if (num == 1) {
|
|
||||||
uni.navigateTo({
|
}
|
||||||
url: '/page_fenbao/statulist/myorder/index'
|
}
|
||||||
})
|
|
||||||
} else if (num == 4) {
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '/page_fenbao/statulist/merchant/index'
|
|
||||||
})
|
|
||||||
} else if (num == 5) {
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '/page_fenbao/statulist/nearby/index'
|
|
||||||
})
|
|
||||||
} else if (num == 6) {
|
|
||||||
uni.switchTab({
|
|
||||||
url: '/pages/index/index'
|
|
||||||
})
|
|
||||||
} else if (num == 7) {
|
|
||||||
uni.navigateTo({
|
|
||||||
url: '/page_fenbao/statulist/fault/yichang/index'
|
|
||||||
})
|
})
|
||||||
|
}else{
|
||||||
|
if (num == 2) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/statulist/question/index'
|
||||||
|
})
|
||||||
|
} else if (num == 3) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/statulist/about/index'
|
||||||
|
})
|
||||||
|
} else if (num == 1) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/statulist/myorder/index'
|
||||||
|
})
|
||||||
|
} else if (num == 4) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/statulist/merchant/index'
|
||||||
|
})
|
||||||
|
} else if (num == 5) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/statulist/nearby/index'
|
||||||
|
})
|
||||||
|
} else if (num == 6) {
|
||||||
|
uni.switchTab({
|
||||||
|
url: '/pages/index/index'
|
||||||
|
})
|
||||||
|
} else if (num == 7) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/page_fenbao/statulist/fault/yichang/index'
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -628,6 +684,7 @@
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getMyLocation(); // 获取并设置自身位置的覆盖物
|
this.getMyLocation(); // 获取并设置自身位置的覆盖物
|
||||||
|
this.startNetworkCheck(); //检测网络
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user