Files
xiaozhi-esp32-server/main/manager-web/src/views/DeviceManagement.vue
T

700 lines
19 KiB
Vue
Raw Normal View History

2025-03-18 21:49:57 +08:00
<template>
<div class="welcome">
2025-03-25 16:23:28 +08:00
<HeaderBar />
<div class="operation-bar">
<h2 class="page-title">设备管理</h2>
<div class="right-operations">
<el-input placeholder="请输入设备型号或Mac地址查询" v-model="searchKeyword" class="search-input"
@keyup.enter.native="handleSearch" clearable />
<el-button class="btn-search" @click="handleSearch">搜索</el-button>
</div>
</div>
2025-04-14 07:52:00 +08:00
<div class="main-wrapper">
<div class="content-panel">
<div class="content-area">
2025-04-15 17:59:29 +08:00
<el-card class="device-card" shadow="never">
<el-table ref="deviceTable" :data="paginatedDeviceList" class="transparent-table"
:header-cell-class-name="headerCellClassName" v-loading="loading" element-loading-text="拼命加载中"
element-loading-spinner="el-icon-loading" element-loading-background="rgba(255, 255, 255, 0.7)">
<el-table-column label="选择" align="center" width="120">
<template slot-scope="scope">
<el-checkbox v-model="scope.row.selected"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="设备型号" prop="model" align="center">
<template slot-scope="scope">
{{ getFirmwareTypeName(scope.row.model) }}
</template>
</el-table-column>
<el-table-column label="固件版本" prop="firmwareVersion" align="center"></el-table-column>
2025-04-14 07:52:00 +08:00
<el-table-column label="Mac地址" prop="macAddress" align="center"></el-table-column>
<el-table-column label="绑定时间" prop="bindTime" align="center"></el-table-column>
<el-table-column label="最近对话" prop="lastConversation" align="center"></el-table-column>
<el-table-column label="备注" align="center">
2025-04-14 07:52:00 +08:00
<template slot-scope="scope">
<el-input v-if="scope.row.isEdit" v-model="scope.row.remark" size="mini"
@blur="stopEditRemark(scope.$index)"></el-input>
<span v-else>
<i v-if="!scope.row.remark" class="el-icon-edit"
@click="startEditRemark(scope.$index, scope.row)"></i>
2025-04-14 07:52:00 +08:00
<span v-else @click="startEditRemark(scope.$index, scope.row)">
{{ scope.row.remark }}
</span>
</span>
</template>
</el-table-column>
<el-table-column label="OTA升级" align="center">
2025-04-14 07:52:00 +08:00
<template slot-scope="scope">
<el-switch v-model="scope.row.otaSwitch" size="mini" active-color="#13ce66" inactive-color="#ff4949"
@change="handleOtaSwitchChange(scope.row)"></el-switch>
2025-04-14 07:52:00 +08:00
</template>
</el-table-column>
<el-table-column label="操作" align="center">
2025-04-14 07:52:00 +08:00
<template slot-scope="scope">
<el-button size="mini" type="text" @click="handleUnbind(scope.row.device_id)">
2025-04-14 07:52:00 +08:00
解绑
</el-button>
</template>
</el-table-column>
</el-table>
<div class="table_bottom">
<div class="ctrl_btn">
<el-button size="mini" type="primary" class="select-all-btn" @click="handleSelectAll">
2025-04-14 07:52:00 +08:00
{{ isAllSelected ? '取消全选' : '全选' }}
</el-button>
<el-button type="success" size="mini" class="add-device-btn" @click="handleAddDevice">
新增
</el-button>
<el-button size="mini" type="danger" icon="el-icon-delete" @click="deleteSelected">解绑</el-button>
2025-04-14 07:52:00 +08:00
</div>
<div class="custom-pagination">
2025-04-15 17:59:29 +08:00
<el-select v-model="pageSize" @change="handlePageSizeChange" class="page-size-select">
<el-option v-for="item in pageSizeOptions" :key="item" :label="`${item}条/页`" :value="item">
</el-option>
2025-04-15 17:59:29 +08:00
</el-select>
2025-04-14 07:52:00 +08:00
<button class="pagination-btn" :disabled="currentPage === 1" @click="goFirst">首页</button>
<button class="pagination-btn" :disabled="currentPage === 1" @click="goPrev">上一页</button>
<button v-for="page in visiblePages" :key="page" class="pagination-btn"
:class="{ active: page === currentPage }" @click="goToPage(page)">
2025-04-14 07:52:00 +08:00
{{ page }}
</button>
<button class="pagination-btn" :disabled="currentPage === pageCount" @click="goNext">下一页</button>
<span class="total-text">{{ deviceList.length }}条记录</span>
</div>
</div>
</el-card>
2025-04-12 08:27:03 +08:00
</div>
2025-03-18 21:49:57 +08:00
</div>
2025-04-14 07:52:00 +08:00
</div>
<AddDeviceDialog :visible.sync="addDeviceDialogVisible" :agent-id="currentAgentId"
@refresh="fetchBindDevices(currentAgentId)" />
2025-03-18 21:49:57 +08:00
</div>
</template>
<script>
2025-04-05 21:03:46 +08:00
import Api from '@/apis/api';
2025-03-18 21:49:57 +08:00
import AddDeviceDialog from "@/components/AddDeviceDialog.vue";
2025-04-05 20:16:02 +08:00
import HeaderBar from "@/components/HeaderBar.vue";
import { FIRMWARE_TYPES } from "@/utils";
2025-03-18 21:49:57 +08:00
export default {
2025-04-05 20:16:02 +08:00
components: { HeaderBar, AddDeviceDialog },
2025-03-18 21:49:57 +08:00
data() {
return {
addDeviceDialogVisible: false,
selectedDevices: [],
2025-04-12 09:28:19 +08:00
isAllSelected: false,
searchKeyword: "",
activeSearchKeyword: "",
2025-03-27 17:54:05 +08:00
currentAgentId: this.$route.query.agentId || '',
2025-03-25 16:23:28 +08:00
currentPage: 1,
pageSize: 10,
pageSizeOptions: [10, 20, 50, 100],
2025-03-25 16:23:28 +08:00
deviceList: [],
loading: false,
2025-03-27 11:24:49 +08:00
userApi: null,
2025-03-18 21:49:57 +08:00
};
},
2025-03-25 16:23:28 +08:00
computed: {
filteredDeviceList() {
const keyword = this.activeSearchKeyword.toLowerCase();
if (!keyword) return this.deviceList;
return this.deviceList.filter(device =>
(device.model && device.model.toLowerCase().includes(keyword)) ||
(device.macAddress && device.macAddress.toLowerCase().includes(keyword))
);
},
2025-03-25 16:23:28 +08:00
paginatedDeviceList() {
const start = (this.currentPage - 1) * this.pageSize;
const end = start + this.pageSize;
return this.filteredDeviceList.slice(start, end).map(item => ({
...item,
selected: false
}));
2025-04-12 08:27:03 +08:00
},
pageCount() {
return Math.ceil(this.filteredDeviceList.length / this.pageSize);
2025-04-12 08:27:03 +08:00
},
visiblePages() {
const pages = [];
const maxVisible = 3;
let start = Math.max(1, this.currentPage - 1);
let end = Math.min(this.pageCount, start + maxVisible - 1);
if (end - start + 1 < maxVisible) {
start = Math.max(1, end - maxVisible + 1);
}
for (let i = start; i <= end; i++) {
pages.push(i);
}
return pages;
2025-04-15 17:59:29 +08:00
},
2025-03-25 16:23:28 +08:00
},
mounted() {
const agentId = this.$route.query.agentId;
2025-04-05 21:03:46 +08:00
if (agentId) {
this.fetchBindDevices(agentId);
}
2025-03-25 16:23:28 +08:00
},
2025-03-18 21:49:57 +08:00
methods: {
2025-04-15 17:59:29 +08:00
handlePageSizeChange(val) {
this.pageSize = val;
this.currentPage = 1;
},
handleSearch() {
this.activeSearchKeyword = this.searchKeyword;
this.currentPage = 1;
},
2025-04-12 09:28:19 +08:00
handleSelectAll() {
this.isAllSelected = !this.isAllSelected;
this.paginatedDeviceList.forEach(row => {
row.selected = this.isAllSelected;
});
this.selectedDevices = this.paginatedDeviceList.filter(device => device.selected);
2025-04-12 09:28:19 +08:00
},
2025-04-14 07:52:00 +08:00
deleteSelected() {
this.selectedDevices = this.paginatedDeviceList.filter(device => device.selected);
if (this.selectedDevices.length === 0) {
this.$message.warning({
message: '请至少选择一条记录',
showClose: true
});
return;
}
this.$confirm(`确认要解绑选中的 ${this.selectedDevices.length} 台设备吗?`, '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
const deviceIds = this.selectedDevices.map(device => device.device_id);
this.batchUnbindDevices(deviceIds);
});
},
batchUnbindDevices(deviceIds) {
const promises = deviceIds.map(id => {
return new Promise((resolve, reject) => {
Api.device.unbindDevice(id, ({ data }) => {
if (data.code === 0) {
resolve();
} else {
reject(data.msg || '解绑失败');
}
});
});
});
Promise.all(promises)
.then(() => {
this.$message.success({
message: `成功解绑 ${deviceIds.length} 台设备`,
showClose: true
});
this.fetchBindDevices(this.currentAgentId);
this.selectedDevices = [];
this.isAllSelected = false;
})
.catch(error => {
this.$message.error({
message: error || '批量解绑过程中出现错误',
showClose: true
});
});
2025-04-14 07:52:00 +08:00
},
2025-04-12 09:28:19 +08:00
2025-03-18 21:49:57 +08:00
handleAddDevice() {
this.addDeviceDialogVisible = true;
},
startEditRemark(index, row) {
this.deviceList[index].isEdit = true;
},
stopEditRemark(index) {
this.deviceList[index].isEdit = false;
},
2025-03-27 11:24:49 +08:00
handleUnbind(device_id) {
this.$confirm('确认要解绑该设备吗?', '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
2025-04-05 21:03:46 +08:00
Api.device.unbindDevice(device_id, ({ data }) => {
2025-03-27 11:24:49 +08:00
if (data.code === 0) {
this.$message.success({
2025-04-05 20:16:02 +08:00
message: '设备解绑成功',
showClose: true
});
2025-03-27 11:24:49 +08:00
this.fetchBindDevices(this.$route.query.agentId);
} else {
this.$message.error({
2025-04-05 20:16:02 +08:00
message: data.msg || '设备解绑失败',
showClose: true
});
2025-03-27 11:24:49 +08:00
}
});
});
2025-03-18 21:49:57 +08:00
},
2025-04-12 08:27:03 +08:00
goFirst() {
this.currentPage = 1;
2025-03-25 16:23:28 +08:00
},
2025-04-12 08:27:03 +08:00
goPrev() {
if (this.currentPage > 1) this.currentPage--;
2025-03-25 16:23:28 +08:00
},
2025-04-12 08:27:03 +08:00
goNext() {
if (this.currentPage < this.pageCount) this.currentPage++;
},
goToPage(page) {
this.currentPage = page;
},
fetchBindDevices(agentId) {
this.loading = true;
2025-04-05 21:03:46 +08:00
Api.device.getAgentBindDevices(agentId, ({ data }) => {
this.loading = false;
if (data.code === 0) {
this.deviceList = data.data.map(device => {
const bindDate = new Date(device.createDate);
const formattedBindTime = `${bindDate.getFullYear()}-${(bindDate.getMonth() + 1).toString().padStart(2, '0')}-${bindDate.getDate().toString().padStart(2, '0')} ${bindDate.getHours().toString().padStart(2, '0')}:${bindDate.getMinutes().toString().padStart(2, '0')}:${bindDate.getSeconds().toString().padStart(2, '0')}`;
let formattedLastConversation = '';
if (device.lastConnectedAt) {
const lastConvoDate = new Date(device.lastConnectedAt);
formattedLastConversation = `${lastConvoDate.getFullYear()}-${(lastConvoDate.getMonth() + 1).toString().padStart(2, '0')}-${lastConvoDate.getDate().toString().padStart(2, '0')} ${lastConvoDate.getHours().toString().padStart(2, '0')}:${lastConvoDate.getMinutes().toString().padStart(2, '0')}:${lastConvoDate.getSeconds().toString().padStart(2, '0')}`;
}
2025-04-05 21:03:46 +08:00
return {
device_id: device.id,
model: device.board,
firmwareVersion: device.appVersion,
macAddress: device.macAddress,
2025-04-14 07:52:00 +08:00
bindTime: formattedBindTime,
lastConversation: formattedLastConversation,
2025-04-05 21:03:46 +08:00
remark: device.alias,
isEdit: false,
otaSwitch: device.autoUpdate === 1,
rawBindTime: new Date(device.createDate).getTime()
};
})
.sort((a, b) => a.rawBindTime - b.rawBindTime);
this.activeSearchKeyword = "";
this.searchKeyword = "";
2025-04-05 21:03:46 +08:00
} else {
this.$message.error(data.msg || '获取设备列表失败');
}
});
},
headerCellClassName({ columnIndex }) {
2025-04-14 07:52:00 +08:00
if (columnIndex === 0) {
return "custom-selection-header";
}
return "";
},
getFirmwareTypeName(type) {
const firmwareType = FIRMWARE_TYPES.find(item => item.key === type);
return firmwareType ? firmwareType.name : type;
},
handleOtaSwitchChange(row) {
Api.device.enableOtaUpgrade(row.device_id, row.otaSwitch ? 1 : 0, ({ data }) => {
if (data.code === 0) {
this.$message.success(row.otaSwitch ? '已设置成自动升级' : '已关闭自动升级')
} else {
row.otaSwitch = !row.otaSwitch
this.$message.error(data.msg || '操作失败')
}
})
},
2025-03-18 21:49:57 +08:00
}
};
</script>
<style scoped>
.welcome {
min-width: 900px;
min-height: 506px;
height: 100vh;
display: flex;
2025-04-14 07:52:00 +08:00
position: relative;
2025-03-18 21:49:57 +08:00
flex-direction: column;
background: linear-gradient(to bottom right, #dce8ff, #e4eeff, #e6cbfd);
2025-03-18 21:49:57 +08:00
background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
}
2025-04-14 07:52:00 +08:00
.main-wrapper {
margin: 5px 22px;
border-radius: 15px;
min-height: calc(100vh - 24vh);
2025-04-15 17:59:29 +08:00
height: auto;
max-height: 80vh;
2025-03-18 21:49:57 +08:00
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
2025-04-14 07:52:00 +08:00
position: relative;
background: rgba(237, 242, 255, 0.5);
2025-04-15 17:59:29 +08:00
display: flex;
flex-direction: column;
2025-03-18 21:49:57 +08:00
}
2025-04-14 07:52:00 +08:00
.operation-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 24px;
}
.page-title {
font-size: 24px;
margin: 0;
color: #2c3e50;
}
.right-operations {
display: flex;
gap: 10px;
margin-left: auto;
}
.search-input {
width: 280px;
border-radius: 4px;
}
.btn-search {
background: linear-gradient(135deg, #6b8cff, #a966ff);
border: none;
color: white;
}
2025-04-15 17:59:29 +08:00
::v-deep .search-input .el-input__inner {
border-radius: 4px;
border: 1px solid #DCDFE6;
background-color: white;
transition: border-color 0.2s;
}
::v-deep .page-size-select {
2025-04-15 17:59:29 +08:00
width: 100px;
margin-right: 8px;
}
::v-deep .page-size-select .el-input__inner {
2025-04-15 17:59:29 +08:00
height: 32px;
line-height: 32px;
border-radius: 4px;
border: 1px solid #e4e7ed;
background: #dee7ff;
color: #606266;
font-size: 14px;
}
::v-deep .page-size-select .el-input__suffix {
2025-04-15 17:59:29 +08:00
right: 6px;
width: 15px;
height: 20px;
display: flex;
justify-content: center;
align-items: center;
top: 6px;
border-radius: 4px;
}
::v-deep .page-size-select .el-input__suffix-inner {
2025-04-15 17:59:29 +08:00
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
::v-deep .page-size-select .el-icon-arrow-up:before {
2025-04-15 17:59:29 +08:00
content: "";
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 9px solid #606266;
position: relative;
transform: rotate(0deg);
transition: transform 0.3s;
}
::v-deep .search-input .el-input__inner:focus {
border-color: #6b8cff;
outline: none;
}
2025-04-14 07:52:00 +08:00
.content-panel {
flex: 1;
display: flex;
overflow: hidden;
height: 100%;
border-radius: 15px;
background: transparent;
border: 1px solid #fff;
}
.content-area {
flex: 1;
height: 100%;
min-width: 600px;
2025-04-15 17:59:29 +08:00
overflow: auto;
2025-04-14 07:52:00 +08:00
background-color: white;
2025-04-15 17:59:29 +08:00
display: flex;
flex-direction: column;
2025-04-14 07:52:00 +08:00
}
2025-04-15 17:59:29 +08:00
.device-card {
2025-04-14 07:52:00 +08:00
background: white;
border: none;
box-shadow: none;
2025-04-15 17:59:29 +08:00
display: flex;
flex-direction: column;
flex: 1;
overflow: hidden;
2025-04-14 07:52:00 +08:00
}
::v-deep .el-card__body {
padding: 15px;
display: flex;
flex-direction: column;
flex: 1;
overflow: hidden;
2025-04-22 11:33:17 +08:00
}
2025-04-14 07:52:00 +08:00
.table_bottom {
display: flex;
justify-content: space-between;
align-items: center;
2025-04-15 17:59:29 +08:00
margin-top: 10px;
padding-bottom: 10px;
2025-04-14 07:52:00 +08:00
}
2025-04-22 11:33:17 +08:00
2025-04-14 07:52:00 +08:00
.ctrl_btn {
display: flex;
gap: 8px;
2025-04-15 17:59:29 +08:00
padding-left: 26px;
2025-04-14 07:52:00 +08:00
}
.ctrl_btn .el-button {
min-width: 72px;
2025-03-18 21:49:57 +08:00
height: 32px;
2025-04-14 09:34:51 +08:00
padding: 7px 12px 7px 10px;
font-size: 12px;
2025-04-14 07:52:00 +08:00
border-radius: 4px;
2025-04-14 09:34:51 +08:00
line-height: 1;
font-weight: 500;
2025-04-14 07:52:00 +08:00
border: none;
2025-04-14 09:34:51 +08:00
transition: all 0.3s ease;
2025-04-12 09:28:19 +08:00
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
2025-03-18 21:49:57 +08:00
}
2025-04-14 07:52:00 +08:00
.ctrl_btn .el-button:hover {
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.ctrl_btn .el-button--primary {
background: #5f70f3;
color: white;
}
.ctrl_btn .el-button--success {
background: #5bc98c;
color: white;
}
.ctrl_btn .el-button--danger {
background: #fd5b63;
color: white;
2025-03-18 21:49:57 +08:00
}
2025-04-12 08:27:03 +08:00
.custom-pagination {
display: flex;
align-items: center;
2025-04-15 17:59:29 +08:00
gap: 10px;
2025-04-12 08:27:03 +08:00
}
2025-04-15 17:59:29 +08:00
.custom-pagination .el-select {
margin-right: 8px;
}
.custom-pagination .pagination-btn:first-child,
.custom-pagination .pagination-btn:nth-child(2),
.custom-pagination .pagination-btn:nth-last-child(2),
.custom-pagination .pagination-btn:nth-child(3) {
min-width: 60px;
2025-04-12 08:27:03 +08:00
height: 32px;
padding: 0 12px;
border-radius: 4px;
border: 1px solid #e4e7ed;
background: #dee7ff;
color: #606266;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
2025-04-15 17:59:29 +08:00
.custom-pagination .pagination-btn:first-child:hover,
.custom-pagination .pagination-btn:nth-child(2):hover,
.custom-pagination .pagination-btn:nth-last-child(2):hover,
.custom-pagination .pagination-btn:nth-child(3):hover {
2025-04-12 08:27:03 +08:00
background: #d7dce6;
}
2025-04-15 17:59:29 +08:00
.custom-pagination .pagination-btn:disabled {
2025-04-12 08:27:03 +08:00
opacity: 0.6;
cursor: not-allowed;
}
2025-04-15 17:59:29 +08:00
.custom-pagination .pagination-btn:not(:first-child):not(:nth-child(3)):not(:nth-child(2)):not(:nth-last-child(2)) {
min-width: 28px;
height: 32px;
padding: 0;
border-radius: 4px;
border: 1px solid transparent;
background: transparent;
color: #606266;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.custom-pagination .pagination-btn:not(:first-child):not(:nth-child(3)):not(:nth-child(2)):not(:nth-last-child(2)):hover {
background: rgba(245, 247, 250, 0.3);
}
.custom-pagination .pagination-btn.active {
2025-04-12 08:27:03 +08:00
background: #5f70f3 !important;
color: #ffffff !important;
border-color: #5f70f3 !important;
}
2025-04-15 17:59:29 +08:00
.custom-pagination .pagination-btn.active:hover {
background: #6d7cf5 !important;
}
.custom-pagination .total-text {
2025-04-12 08:27:03 +08:00
color: #909399;
font-size: 14px;
margin-left: 10px;
2025-03-25 16:23:28 +08:00
}
2025-04-12 09:28:19 +08:00
2025-04-14 07:52:00 +08:00
:deep(.transparent-table) {
background: white;
2025-04-14 09:34:51 +08:00
border: none;
2025-04-12 09:28:19 +08:00
}
2025-04-14 07:52:00 +08:00
:deep(.transparent-table .el-table__header th) {
background: white !important;
color: black;
2025-04-14 09:34:51 +08:00
border-right: none !important;
}
2025-04-14 07:52:00 +08:00
:deep(.transparent-table .el-table__body tr td) {
border-top: 1px solid rgba(0, 0, 0, 0.04);
border-bottom: 1px solid rgba(0, 0, 0, 0.04);
2025-04-14 09:34:51 +08:00
border-right: none !important;
}
:deep(.transparent-table .el-table__header tr th:first-child .cell),
:deep(.transparent-table .el-table__body tr td:first-child .cell) {
padding-left: 10px;
}
2025-04-14 07:52:00 +08:00
:deep(.el-icon-edit) {
color: #7079aa;
cursor: pointer;
}
2025-04-14 07:52:00 +08:00
:deep(.el-icon-edit:hover) {
color: #5a64b5;
}
2025-04-14 07:52:00 +08:00
:deep(.custom-selection-header .el-checkbox) {
display: none !important;
}
:deep(.el-table .el-button--text) {
color: #7079aa;
}
:deep(.el-table .el-button--text:hover) {
color: #5a64b5;
}
2025-04-15 17:59:29 +08:00
:deep(.transparent-table) {
flex: 1;
display: flex;
flex-direction: column;
max-height: calc(100vh - 40vh);
2025-04-15 17:59:29 +08:00
}
2025-04-15 17:59:29 +08:00
:deep(.el-table__body-wrapper) {
flex: 1;
overflow-y: auto;
2025-04-15 17:59:29 +08:00
max-height: none !important;
}
:deep(.el-table__header-wrapper) {
flex-shrink: 0;
}
@media (min-width: 1144px) {
.table_bottom {
margin-top: 40px;
}
:deep(.transparent-table) .el-table__body tr td {
padding-top: 16px;
padding-bottom: 16px;
}
}
:deep(.el-checkbox__inner) {
background-color: #eeeeee !important;
border-color: #cccccc !important;
}
:deep(.el-checkbox__inner:hover) {
border-color: #cccccc !important;
}
:deep(.el-checkbox__input.is-checked .el-checkbox__inner) {
background-color: #5f70f3 !important;
border-color: #5f70f3 !important;
}
2025-04-22 11:33:17 +08:00
::v-deep .el-table--border::after,
::v-deep .el-table--group::after,
::v-deep .el-table::before {
display: none !important;
}
2025-03-25 16:23:28 +08:00
</style>