This commit is contained in:
3321822538@qq.com 2024-07-15 18:00:44 +08:00
parent f3c25f2816
commit e0cc3c7cf4
10 changed files with 122 additions and 65 deletions

View File

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

View File

@ -3,7 +3,7 @@
<!-- <u-navbar :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" <!-- <u-navbar :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
title-size='36' height='50'></u-navbar> --> title-size='36' height='50'></u-navbar> -->
<view class="title"> <view class="title">
{{deviceobj.deviceName}} <u-icon name="home" color="#fff" size="48" @click="btnshouye"></u-icon> {{deviceobj.deviceName}}
<view class="wz"> <view class="wz">
<!-- 该设备还剩余时长{{expireTimeStr}}分钟 --> <!-- 该设备还剩余时长{{expireTimeStr}}分钟 -->
</view> </view>
@ -224,6 +224,11 @@
}); });
}, },
methods: { methods: {
btnshouye(){
uni.reLaunch({
url:'/pages/shouye/index'
})
},
btnjxcz() { btnjxcz() {
xBlufi.initXBlufi(1) xBlufi.initXBlufi(1)
xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent); xBlufi.listenDeviceMsgEvent(true, this.funListenDeviceMsgEvent);
@ -638,6 +643,9 @@
</script> </script>
<style lang="scss"> <style lang="scss">
.u-icon__icon{
// margin-right: 20rpx;
}
.mask { .mask {
width: 100%; width: 100%;
height: 100vh; height: 100vh;

View File

@ -46,6 +46,10 @@
size="32" @click="btnjwd"></u-icon> size="32" @click="btnjwd"></u-icon>
</view> </view>
</view> </view>
<view class="listval">
<view class="tit"> 是否展示店铺</view>
<u-switch v-model="checked" active-color="#8883F0"></u-switch>
</view>
<!-- <view class="listval"> <!-- <view class="listval">
<view class="tit"> 详细地址</view> <view class="tit"> 详细地址</view>
<view class="but"> <input type="text" placeholder="请输入详细地址" v-model="xqdz" /> </view> <view class="but"> <input type="text" placeholder="请输入详细地址" v-model="xqdz" /> </view>
@ -91,6 +95,7 @@
export default { export default {
data() { data() {
return { return {
checked:false,
params: { params: {
hour: true, hour: true,
minute: true, minute: true,
@ -163,6 +168,7 @@
this.city = this.listobj.city this.city = this.listobj.city
this.area = this.listobj.county this.area = this.listobj.county
this.storeId = this.listobj.storeId this.storeId = this.listobj.storeId
this.checked = this.listobj.show
if (this.selectorvalue == 1) { if (this.selectorvalue == 1) {
this.selectortext = '商场' this.selectortext = '商场'
} else if (this.selectorvalue == 2) { } else if (this.selectorvalue == 2) {
@ -286,7 +292,8 @@
contactName: this.lxname, contactName: this.lxname,
contactMobile: this.lxphone, contactMobile: this.lxphone,
type: this.selectorvalue, type: this.selectorvalue,
storeId: this.storeId storeId: this.storeId,
show:this.checked
} }
this.$u.put("/app/store", data).then(res => { this.$u.put("/app/store", data).then(res => {
if (res.code == 500) { if (res.code == 500) {
@ -417,7 +424,7 @@
.list { .list {
width: 680rpx; width: 680rpx;
height: 1020rpx; height: 1080rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 24rpx 24rpx 24rpx 24rpx; border-radius: 24rpx 24rpx 24rpx 24rpx;
margin: auto; margin: auto;

View File

@ -46,6 +46,10 @@
size="32" @click="btnjwd"></u-icon> size="32" @click="btnjwd"></u-icon>
</view> </view>
</view> </view>
<view class="listval">
<view class="tit"> 是否展示店铺</view>
<u-switch v-model="checked" active-color="#8883F0"></u-switch>
</view>
<!-- <view class="listval"> <!-- <view class="listval">
<view class="tit"> 详细地址</view> <view class="tit"> 详细地址</view>
<view class="but"> <input type="text" placeholder="请输入详细地址" v-model="xqdz" /> </view> <view class="but"> <input type="text" placeholder="请输入详细地址" v-model="xqdz" /> </view>
@ -93,6 +97,7 @@
export default { export default {
data() { data() {
return { return {
checked:false,
params: { params: {
hour: true, hour: true,
minute: true, minute: true,
@ -261,7 +266,8 @@
specificAddress: this.xqdz, specificAddress: this.xqdz,
contactName: this.shopname, contactName: this.shopname,
contactMobile: this.lxphone, contactMobile: this.lxphone,
type: this.selectorvalue type: this.selectorvalue,
show:this.checked
} }
this.$u.post("/app/store", data).then(res => { this.$u.post("/app/store", data).then(res => {
if (res.code == 200) { if (res.code == 200) {
@ -270,7 +276,9 @@
icon: 'success', icon: 'success',
duration: 1000 duration: 1000
}) })
uni.navigateBack() setTimeout(()=>{
uni.navigateBack()
},1000)
} }
}) })
} }
@ -381,7 +389,7 @@
.list { .list {
width: 680rpx; width: 680rpx;
height: 1020rpx; height: 1080rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 24rpx 24rpx 24rpx 24rpx; border-radius: 24rpx 24rpx 24rpx 24rpx;
margin: auto; margin: auto;

View File

@ -8,7 +8,7 @@
<text class="sm"> {{texts}} </text --> <text class="sm"> {{texts}} </text -->
</view> </view>
<view class="dblist" v-for="(item, index) in devicesList" :key="index"> <view class="dblist" v-for="(item, index) in devicesLists" :key="index">
<view class="lt"> <view class="lt">
<image src="https://api.ccttiot.com/smartmeter/img/static/uoQO0pUZ1UHcW5uVKkuR" mode=""></image> <image src="https://api.ccttiot.com/smartmeter/img/static/uoQO0pUZ1UHcW5uVKkuR" mode=""></image>
</view> </view>
@ -34,7 +34,7 @@
<view class="titles"> <view class="titles">
温馨提示 温馨提示
</view> </view>
<text>无法扫描到附近设备:</text> <text>未扫描到附近未绑定设备:</text>
<text>1.确保待连接设备在附近且蓝牙处于打开状态</text> <text>1.确保待连接设备在附近且蓝牙处于打开状态</text>
<text>2.确保设备未与其他设备进行蓝牙连接</text> <text>2.确保设备未与其他设备进行蓝牙连接</text>
<text>确保设备未被添加过</text> <text>确保设备未被添加过</text>
@ -65,6 +65,7 @@
// {name:'110000', // {name:'110000',
// mac:'11111'} // mac:'11111'}
], ],
devicesLists:[],
searching: false, searching: false,
texts: '正在扫描设备...', texts: '正在扫描设备...',
btnflag: true, btnflag: true,
@ -81,10 +82,13 @@
bgc: { bgc: {
backgroundColor: "#8883f0", backgroundColor: "#8883f0",
}, },
lurulist:[],
} }
}, },
onLoad(option) { onLoad(option) {
// console.log(option); // console.log(option);
this.getluru()
this.storeId = option.sn this.storeId = option.sn
xBlufi.initXBlufi(1); xBlufi.initXBlufi(1);
console.log("xBlufi", xBlufi.XMQTT_SYSTEM); console.log("xBlufi", xBlufi.XMQTT_SYSTEM);
@ -99,7 +103,7 @@
'isStart': false 'isStart': false
}); });
// //
if (this.devicesList.length == 0) { if (this.devicesLists.length == 0) {
this.tishiflag = true this.tishiflag = true
this.texts = '扫描完毕,暂无发现设备' this.texts = '扫描完毕,暂无发现设备'
} else { } else {
@ -137,6 +141,14 @@
this.videoContext = uni.createVideoContext('myVideo', this) this.videoContext = uni.createVideoContext('myVideo', this)
}, },
methods: { methods: {
// mac
getluru(){
this.$u.get(`/app/device/listAllMac`).then(res => {
if(res.code == 200){
this.lurulist = res.data
}
})
},
btnyc() { btnyc() {
this.titleflag = false this.titleflag = false
}, },
@ -150,10 +162,13 @@
const mac = device.name.substring(5); const mac = device.name.substring(5);
if (device.name.substring(0, 4) == "CTKG") { if (device.name.substring(0, 4) == "CTKG") {
this.devicesList.push(device); this.devicesList.push(device);
console.log(this.devicesList);
let uniqueDevicesList = Array.from(new Set(this.devicesList)); let uniqueDevicesList = Array.from(new Set(this.devicesList));
this.devicesLists = uniqueDevicesList.filter(device => {
const deviceId = device.name.substring(5);
return !this.lurulist.includes(deviceId);
})
// this.devicesList // this.devicesList
this.devicesList = uniqueDevicesList; // this.devicesList = uniqueDevicesList;
} }
}); });
} }
@ -235,29 +250,16 @@
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));
console.log(uniqueDevicesList,'uniqueDevicesListuniqueDevicesList'); // console.log(uniqueDevicesList,'uniqueDevicesListuniqueDevicesList');
// this.devicesList // this.devicesList
this.devicesList = uniqueDevicesList; this.devicesLists = uniqueDevicesList.filter(device => {
let list = [] const deviceId = device.name.substring(5);
// this.devicesList.forEach(device => { return !this.lurulist.includes(deviceId);
// MAC MAC 6 })
// let macFromName = device.name.substring(device.name.length - 12); console.log('蓝牙停止搜索ok')
// console.log(macFromName); if(this.devicesLists.length == 0){
// this.mac this.titleflag = true
// this.$u.get(`/app/device/${macFromName}/isBind`).then((res) => { }
// if (res.data == false) {
// list.push(device)
// } else {
// }
// })
// });
// setTimeout(() => {
// this.devicesList = list
// }, 200)
console.log('蓝牙停止搜索ok');
} else { } else {
// //
console.log('蓝牙停止搜索失败'); console.log('蓝牙停止搜索失败');
@ -312,20 +314,22 @@
}, },
// //
Search() { Search() {
if (this.status) { console.log(1);
// if (this.status) {
xBlufi.notifyStartDiscoverBle({ xBlufi.notifyStartDiscoverBle({
'isStart': true 'isStart': true
}); });
// //
this.bluthlist = [] this.bluthlist = []
this.devicesList = [] this.devicesList = []
this.devicesLists = []
// //
// this.startBluetoothDevicesDiscovery() // this.startBluetoothDevicesDiscovery()
this.statusflag = true this.statusflag = true
this.texts = '正在扫描蓝牙设备...' this.texts = '正在扫描蓝牙设备...'
setTimeout(() => { setTimeout(() => {
this.statusflag = false this.statusflag = false
if (this.searching) { if (this.searching) {
xBlufi.notifyStartDiscoverBle({ xBlufi.notifyStartDiscoverBle({
'isStart': false 'isStart': false
}); });
@ -342,7 +346,7 @@
}); });
} }
}, 2000) }, 2000)
} // }
}, },
// //
btnhd() { btnhd() {

View File

@ -354,12 +354,9 @@
this.timeday = Math.abs(Math.floor(differenceInMs / (1000 * 60))); this.timeday = Math.abs(Math.floor(differenceInMs / (1000 * 60)));
} }
} }
this.loadings = true this.loadings = true
} }
}); });
}, },
opendevice() { opendevice() {
let stause = 0 let stause = 0

View File

@ -94,14 +94,16 @@
title: '正在配网', title: '正在配网',
mask: true mask: true
}) })
xBlufi.notifySendCustomData({
      customData: "ssid@" + this.name + "pass@" + this.password
 })
// xBlufi.notifySendCustomData({
// customData: "ssid@" + this.name
// })
xBlufi.notifySendCustomData({ // xBlufi.notifySendCustomData({
customData: "ssid@" + this.name // customData: "pass@" + this.password
}) // })
xBlufi.notifySendCustomData({
customData: "pass@" + this.password
})
}, },
@ -112,7 +114,7 @@
console.log('状态', options.result) console.log('状态', options.result)
uni.showModal({ uni.showModal({
title: '很抱歉提醒你!', title: '很抱歉提醒你!',
content: '小程序与设备异常断开', content: '小程序与设备异常断开',
showCancel: false, showCancel: false,
success: function(res) { success: function(res) {
uni.navigateTo({ uni.navigateTo({

View File

@ -433,9 +433,15 @@
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },{
"path": "newtaocan",
{ "style": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#4473f6",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},{
"path": "eletj", "path": "eletj",
"style": { "style": {
"navigationBarTitleText": "", "navigationBarTitleText": "",
@ -473,6 +479,16 @@
"navigationBarTextStyle": "#FFFFFF", "navigationBarTextStyle": "#FFFFFF",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},
{
"path": "bindsz",
"style": {
"navigationBarTitleText": "添加设备",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#3996FD",
"navigationBarTextStyle": "#FFFFFF",
"navigationStyle": "custom"
}
} }
] ]
} }

View File

@ -426,9 +426,7 @@
} }
}) })
} else { } else {
this.$u.get( this.$u.get(`/app/device/list?storeId=${this.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`).then((res) => {
`/app/device/list?storeId=${this.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`)
.then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.total = res.total this.total = res.total
// this.wateringList = [] // this.wateringList = []

View File

@ -11,7 +11,7 @@
</view> </view>
<!-- 正在进行中的订单 --> <!-- 正在进行中的订单 -->
<!-- <view class="ongoing_order"> <view class="ongoing_order">
<view class="order_top"> <view class="order_top">
<view class="order_lt"> <view class="order_lt">
<image src="https://api.ccttiot.com/smartmeter/img/static/uFNuOet0fB5Bwe1c26sk" mode=""></image> <image src="https://api.ccttiot.com/smartmeter/img/static/uFNuOet0fB5Bwe1c26sk" mode=""></image>
@ -20,12 +20,12 @@
<image @click="btnorder" v-if="!listflag" src="https://api.ccttiot.com/smartmeter/img/static/ublEB3HEjyfZbnKS2Ai9" mode=""></image> <image @click="btnorder" v-if="!listflag" src="https://api.ccttiot.com/smartmeter/img/static/ublEB3HEjyfZbnKS2Ai9" mode=""></image>
<image @click="btnorders" v-if="listflag" style="transform: rotate(180deg);margin-top: 20rpx;" src="https://api.ccttiot.com/smartmeter/img/static/ublEB3HEjyfZbnKS2Ai9" mode=""></image> <image @click="btnorders" v-if="listflag" style="transform: rotate(180deg);margin-top: 20rpx;" src="https://api.ccttiot.com/smartmeter/img/static/ublEB3HEjyfZbnKS2Ai9" mode=""></image>
</view> </view>
<view class="order_list" v-for="(item,index) in 3" :key="index" v-if="listflag" @click="btnitem"> <view class="order_list" v-for="(item,index) in sylist" :key="index" v-if="listflag" @click="btnitem">
<text>共享洗衣机001</text> <image src="https://api.ccttiot.com/smartmeter/img/static/uZoBXJ0MLrGUSBFk5lGp" mode=""></image> <text>{{item.deviceName}}</text> <image src="https://api.ccttiot.com/smartmeter/img/static/uZoBXJ0MLrGUSBFk5lGp" mode=""></image>
</view> </view>
</view> --> </view>
<!-- 正在进行中的订单结束 --><!-- 正在进行中的订单结束 --> <!-- 正在进行中的订单结束 --><!-- 正在进行中的订单结束 -->
<view class="fujin"> <view class="fujin">
<image src="https://api.ccttiot.com/smartmeter/img/static/uqv3e5ThWL8DqrRNBfoA" mode="" <image src="https://api.ccttiot.com/smartmeter/img/static/uqv3e5ThWL8DqrRNBfoA" mode=""
@click="btnindex(5)"></image> @click="btnindex(5)"></image>
@ -120,10 +120,12 @@
backgroundColor: "#8883F0", backgroundColor: "#8883F0",
}, },
deviceobj: {}, deviceobj: {},
deviceCount: 0 deviceCount: 0,
sylist:[]
}; };
}, },
onLoad(option) { onLoad(option) {
if (option.flag) { if (option.flag) {
let id = option.id let id = option.id
this.$u.get(`/app/device/${id}/withSuitList`).then((res) => { this.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
@ -143,8 +145,7 @@
that.$u.put("/app/device/bind", data).then(res => { that.$u.put("/app/device/bind", data).then(res => {
if (res.code == 200) { if (res.code == 200) {
uni.navigateTo({ uni.navigateTo({
url: '/page_user/sbdetail?id=' + that.deviceobj url: '/page_components/bindsz?id=' + that.deviceobj.deviceId
.deviceId
}) })
} else { } else {
if (res.msg == '设备未录入') { if (res.msg == '设备未录入') {
@ -169,10 +170,27 @@
}) })
} }
}, },
//
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
//
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
onShow() { onShow() {
this.logins() this.logins()
this.getad() this.getad()
this.gethuidaio() this.gethuidaio()
this.getshiy()
}, },
onReady() { onReady() {
this.mapContext = uni.createMapContext('map', this) this.mapContext = uni.createMapContext('map', this)
@ -226,7 +244,6 @@
}) })
}, },
calculateAnchorX(name) { calculateAnchorX(name) {
let chineseLength = 0 let chineseLength = 0
let englishLength = 0 let englishLength = 0