2025-08-02 16:32:48 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<view class="device-page">
|
|
|
|
|
<view class="sendFlex">
|
2025-08-14 13:46:57 +08:00
|
|
|
|
<view class="Sendmessage" @click="call">呼叫</view>
|
2025-08-02 16:32:48 +08:00
|
|
|
|
<view class="Sendmessage" @click="handleSend">发送信息</view>
|
|
|
|
|
</view>
|
|
|
|
|
<scroll-view class="device-list" scroll-y @scrolltolower="onScrollToLower" :lower-threshold="100"
|
|
|
|
|
style="height:80vh;">
|
|
|
|
|
<view v-if="deviceList.length>0">
|
2025-08-04 15:49:17 +08:00
|
|
|
|
<block v-for="(item, index) in deviceList" :key="index" :ref="'swipeItem_' + index"
|
|
|
|
|
class="device-card">
|
|
|
|
|
<view @click.stop="handleFile(item)">
|
|
|
|
|
<view class="device-header">
|
|
|
|
|
<view class="deviceIMG">
|
|
|
|
|
<image :src="item.devicePic" class="IMG" mode="aspectFit"></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="device-name">
|
|
|
|
|
<view>设备:{{item.deviceName}}</view>
|
|
|
|
|
<view class="ID">
|
|
|
|
|
<view class="ID">ID:{{item.deviceImei}}
|
2025-08-02 16:32:48 +08:00
|
|
|
|
</view>
|
2025-08-04 15:49:17 +08:00
|
|
|
|
<!-- 在线状态 -->
|
|
|
|
|
<view class="onlines">在线</view>
|
|
|
|
|
<!-- 离线状态 -->
|
|
|
|
|
<view class="offlines" v-if="item.onlineStatus==0">离线</view>
|
|
|
|
|
<view>电量:{{item.battery || '0'}}%</view>
|
2025-08-02 16:32:48 +08:00
|
|
|
|
</view>
|
2025-08-04 15:49:17 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view>
|
|
|
|
|
<view class="device-status">1</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</block>
|
2025-08-02 16:32:48 +08:00
|
|
|
|
</view>
|
2025-08-04 15:49:17 +08:00
|
|
|
|
<view class="content1" @click="addvideo">
|
2025-08-02 16:32:48 +08:00
|
|
|
|
<image src="/static/images/common/path1.png" class="path1"></image>
|
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
deviceID: '',
|
2025-08-04 15:49:17 +08:00
|
|
|
|
deviceList: [],
|
|
|
|
|
loading: false,
|
|
|
|
|
deviceType:''
|
2025-08-02 16:32:48 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 添加视频
|
|
|
|
|
addvideo() {
|
|
|
|
|
uni.navigateTo({
|
2025-08-04 15:49:17 +08:00
|
|
|
|
url: `/pages/210/addDevice/index??id=${this.deviceID}`
|
2025-08-02 16:32:48 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getData() {
|
|
|
|
|
let data = {
|
|
|
|
|
deviceId: this.deviceID
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 发生短信
|
|
|
|
|
handleSend() {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/common/send/index',
|
|
|
|
|
events: {
|
|
|
|
|
ack: function(data) {}
|
|
|
|
|
},
|
|
|
|
|
success: (res) => {
|
|
|
|
|
res.eventChannel.emit('deviceSend', {
|
2025-08-04 15:49:17 +08:00
|
|
|
|
data:this.deviceType
|
2025-08-02 16:32:48 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2025-08-14 13:46:57 +08:00
|
|
|
|
// 呼叫功能
|
|
|
|
|
call(){
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/210/call/index',
|
|
|
|
|
events: {
|
|
|
|
|
ack: function(data) {}
|
|
|
|
|
},
|
|
|
|
|
success: (res) => {
|
|
|
|
|
res.eventChannel.emit('deviceCall', {
|
|
|
|
|
data:this.deviceType
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-08-02 16:32:48 +08:00
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
this.getData()
|
|
|
|
|
},
|
2025-08-04 15:49:17 +08:00
|
|
|
|
// onLoad(options) {
|
|
|
|
|
// this.deviceID = options.id
|
2025-08-02 16:32:48 +08:00
|
|
|
|
|
2025-08-04 15:49:17 +08:00
|
|
|
|
// }
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
const eventChannel = this.getOpenerEventChannel();
|
|
|
|
|
eventChannel.on('onlineDevice', (data) => {
|
|
|
|
|
this.deviceType=data.data
|
|
|
|
|
})
|
2025-08-02 16:32:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
/* 页面整体样式 */
|
|
|
|
|
.device-page {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background-color: rgb(18, 18, 18);
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.sendFlex {
|
|
|
|
|
display: flex;
|
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
/* 设备卡片 */
|
|
|
|
|
.device-card {
|
|
|
|
|
background-color: rgb(26, 26, 26);
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.device-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 15rpx;
|
|
|
|
|
padding: 30rpx 0 10rpx 30rpx;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.device-name {
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
|
|
|
margin-left: 24rpx;
|
|
|
|
|
line-height: 50rpx;
|
|
|
|
|
width: 75%;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.ID {
|
|
|
|
|
color: rgba(255, 255, 255, 0.6);
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
position: relative;
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.device-status {
|
|
|
|
|
width: 122rpx;
|
|
|
|
|
height: 52rpx;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
border-radius: 0px 8px 0px 8px;
|
|
|
|
|
background-color: rgb(42, 42, 42);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0rpx;
|
|
|
|
|
right: 0rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 52rpx;
|
|
|
|
|
color: rgba(255, 255, 255, 0.8)
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.circle {
|
|
|
|
|
width: 8rpx;
|
|
|
|
|
height: 40rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 25rpx;
|
|
|
|
|
top: 60rpx;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.device-id {
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #999;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.device-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0rpx 0rpx 30rpx 30rpx;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.deviceIMG {
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
background-color: rgba(42, 42, 42, 0.6);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.IMG {
|
|
|
|
|
width: 68rpx;
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
margin-left: 17%;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.onlines {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.onlines::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 15rpx;
|
|
|
|
|
height: 15rpx;
|
|
|
|
|
background: rgb(0, 171, 103);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
top: 20rpx;
|
|
|
|
|
left: -20rpx
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
|
|
|
|
.offlines {
|
2025-08-02 16:32:48 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.offlines::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 15rpx;
|
|
|
|
|
height: 15rpx;
|
|
|
|
|
background: rgba(255, 255, 255, 0.4);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
top: 20rpx;
|
|
|
|
|
left: -20rpx
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.content1 {
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
background: rgb(26, 26, 26);
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 200rpx;
|
|
|
|
|
}
|
2025-08-04 15:49:17 +08:00
|
|
|
|
|
2025-08-02 16:32:48 +08:00
|
|
|
|
.Sendmessage {
|
|
|
|
|
margin-left: 50rpx;
|
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.path1 {
|
|
|
|
|
width: 62rpx;
|
|
|
|
|
height: 62rpx;
|
|
|
|
|
}
|
|
|
|
|
</style>
|