分组中添加设备前端

This commit is contained in:
kerwincui
2022-06-06 15:52:48 +08:00
parent 1f7a127499
commit e6ccf6ee58
6 changed files with 69 additions and 30 deletions

View File

@@ -32,24 +32,24 @@ import {
getDeviceIds
} from "@/api/iot/group"
import {
listDeviceShort,
listDeviceByGroup,
} from "@/api/iot/device";
export default {
name: "device-list",
dicts: ['iot_device_status'],
props: {
groupId: {
type: Number,
group: {
type: Object,
default: null
}
},
data() {
return {
// 设备分组
deviceGroup:{},
// 遮罩层
loading: true,
// 分组信息
parentGroupId:0,
// 选中数组
ids: [],
// 显示搜索条件
@@ -62,6 +62,7 @@ export default {
queryParams: {
pageNum: 1,
pageSize: 10,
userId:null,
deviceName: null,
productId: null,
productName: null,
@@ -78,11 +79,12 @@ export default {
},
watch: {
// 获取到父组件传递的group后刷新列表
groupId: {
group: {
handler(newVal, oldVal) {
this.parentGroupId = newVal;
this.deviceGroup = newVal;
// 获取分组下的设备
this.queryParams.pageNum=1;
this.queryParams.userId=this.deviceGroup.userId;
this.queryParams.pageNum = 1;
this.getDeviceIdsByGroupId();
},
immediate: true
@@ -94,7 +96,7 @@ export default {
methods: {
// 获取分组下关联的设备ID数组
getDeviceIdsByGroupId() {
getDeviceIds(this.parentGroupId).then(response => {
getDeviceIds(this.deviceGroup.groupId).then(response => {
this.ids = response.data;
this.getList();
});
@@ -107,7 +109,7 @@ export default {
this.queryParams.params["beginActiveTime"] = this.daterangeActiveTime[0];
this.queryParams.params["endActiveTime"] = this.daterangeActiveTime[1];
}
listDeviceShort(this.queryParams).then(response => {
listDeviceByGroup(this.queryParams).then(response => {
this.deviceList = response.rows;
this.total = response.total;
this.loading = false;

View File

@@ -25,8 +25,9 @@
</template>
</el-table-column>
<el-table-column label="备注" align="left" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="230">
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="320">
<template slot-scope="scope">
<el-button size="small" type="warning" style="padding:5px;" icon="el-icon-search" @click="handleViewDevice(scope.row.groupId)" v-hasPermi="['iot:device:query']">查看设备</el-button>
<el-button size="small" type="success" style="padding:5px;" icon="el-icon-edit" @click="selectDevice(scope.row)" v-hasPermi="['iot:group:edit']">添加设备</el-button>
<el-button size="small" type="primary" style="padding:5px;" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['iot:group:edit']">修改</el-button>
<el-button size="small" type="danger" style="padding:5px;" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['iot:group:remove']">删除</el-button>
@@ -36,7 +37,7 @@
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
<el-dialog title="选择设备" :visible.sync="openDeviceList" width="800px" append-to-body>
<device-list ref="deviceList" :groupId="deviceGroup.groupId" @idsToParentEvent="getChildData($event)"></device-list>
<device-list ref="deviceList" :group="group" @idsToParentEvent="getChildData($event)"></device-list>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleDeviceSelected"> </el-button>
<el-button @click="closeSelectDeviceList"> </el-button>
@@ -112,7 +113,7 @@ export default {
userName: null,
},
// 设备分组
deviceGroup: {},
group: {},
// 表单参数
form: {},
// 表单校验
@@ -141,6 +142,16 @@ export default {
this.getList();
},
methods: {
/** 查看设备按钮操作 */
handleViewDevice(groupId) {
this.$router.push({
path: '/iot/device',
query: {
t: Date.now(),
groupId: groupId,
}
});
},
/** 查询设备分组列表 */
getList() {
this.loading = true;
@@ -211,9 +222,9 @@ export default {
},
/** 选择设备 */
selectDevice(row) {
this.deviceGroup.groupId = row.groupId;
this.group = row;
this.openDeviceList = true;
this.$refs.deviceList.getDeviceIdsByGroupId();
// this.$refs.deviceList.getDeviceIdsByGroupId(row.groupId);
},
/** 提交按钮 */
submitForm() {
@@ -253,11 +264,11 @@ export default {
},
// 获取子组件选中的ID数组
getChildData(data) {
this.deviceGroup.deviceIds = data;
this.group.deviceIds = data;
},
// 更新分组下的设备
handleDeviceSelected() {
updateDeviceGroups(this.deviceGroup).then(response => {
updateDeviceGroups(this.group).then(response => {
this.$modal.msgSuccess("更新分组下的设备成功");
this.openDeviceList = false;
})