分组中添加设备支持分页

This commit is contained in:
kerwincui
2022-07-08 23:49:26 +08:00
parent faaf0e387a
commit 89595fbf84
3 changed files with 60 additions and 61 deletions

View File

@@ -59,7 +59,7 @@ import {
} from "@/api/iot/product"; } from "@/api/iot/product";
export default { export default {
name: "Product", name: "ProductList",
dicts: ['iot_vertificate_method', 'iot_network_method'], dicts: ['iot_vertificate_method', 'iot_network_method'],
props: { props: {
productId: { productId: {

View File

@@ -1,12 +1,11 @@
<template> <template>
<div style="padding:6px;"> <el-dialog title="选择设备" :visible.sync="openDeviceList" width="800px" append-to-body>
<el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px"> <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
<el-form-item label="设备名称" prop="deviceName"> <el-form-item label="设备名称" prop="deviceName">
<el-input v-model="queryParams.deviceName" placeholder="请输入设备名称" clearable size="small" @keyup.enter.native="handleQuery" /> <el-input v-model="queryParams.deviceName" placeholder="请输入设备名称" clearable size="small" @keyup.enter.native="handleQuery" />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@@ -27,15 +26,19 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
<!-- <pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" /> --> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleDeviceSelected"> </el-button>
</div> <el-button @click="closeSelectDeviceList"> </el-button>
</div>
</el-dialog>
</template> </template>
<script> <script>
import { import {
getDeviceIds getDeviceIds,
updateDeviceGroups
} from "@/api/iot/group" } from "@/api/iot/group"
import { import {
listDeviceByGroup, listDeviceByGroup,
@@ -58,8 +61,8 @@ export default {
loading: true, loading: true,
// 选中数组 // 选中数组
ids: [], ids: [],
// 显示搜索条件 // 是否显示设备列表
showSearch: true, openDeviceList: false,
// 总条数 // 总条数
total: 0, total: 0,
// 设备表格数据 // 设备表格数据
@@ -67,8 +70,7 @@ export default {
// 查询参数 // 查询参数
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 500, pageSize: 10,
userId: null,
deviceName: null, deviceName: null,
productId: null, productId: null,
productName: null, productName: null,
@@ -87,11 +89,13 @@ export default {
// 获取到父组件传递的group后刷新列表 // 获取到父组件传递的group后刷新列表
group: { group: {
handler(newVal, oldVal) { handler(newVal, oldVal) {
this.deviceGroup = newVal; if (newVal.groupId) {
// 获取分组下的设备 this.deviceGroup = newVal;
this.queryParams.userId = this.deviceGroup.userId; // 获取分组下的设备
this.queryParams.pageNum = 1; this.queryParams.userId = this.deviceGroup.userId;
this.getDeviceIdsByGroupId(); this.queryParams.pageNum = 1;
this.getDeviceIdsByGroupId(this.deviceGroup.groupId);
}
}, },
immediate: true immediate: true
} }
@@ -101,11 +105,9 @@ export default {
}, },
methods: { methods: {
// 获取分组下关联的设备ID数组 // 获取分组下关联的设备ID数组
getDeviceIdsByGroupId() { getDeviceIdsByGroupId(groupId) {
getDeviceIds(this.deviceGroup.groupId).then(response => { getDeviceIds(groupId).then(response => {
this.ids = response.data; this.ids = response.data;
// Id数组传递到父组件
this.$emit('idsToParentEvent', this.ids)
this.getList(); this.getList();
}); });
}, },
@@ -143,13 +145,34 @@ export default {
this.handleQuery(); this.handleQuery();
}, },
// 多选框选中数据 // 多选框选中数据
handleSelectionChange(selection) { handleSelectionChange(selection, row) {
this.ids = selection.map(item => item.deviceId)
this.single = selection.length !== 1 this.single = selection.length !== 1
this.multiple = !selection.length this.multiple = !selection.length;
// Id数组传递到父组件
this.$emit('idsToParentEvent', this.ids) // 设备ID是否存在于原始设备ID数组中
let index = this.ids.indexOf(row.deviceId);
// 是否选中
let value = selection.indexOf(row);
if (index == -1 && value != -1) {
// 不存在且选中
this.ids.push(row.deviceId);
} else if (index != -1 && value == -1) {
// 存在且取消选中
this.ids.splice(index, 1);
}
}, },
// 关闭选择设备列表
closeSelectDeviceList() {
this.openDeviceList = false;
},
// 更新分组下的设备
handleDeviceSelected() {
this.group.deviceIds=this.ids;
updateDeviceGroups(this.group).then(response => {
this.$modal.msgSuccess("更新分组下的设备成功");
this.openDeviceList = false;
})
}
} }
}; };
</script> </script>

View File

@@ -39,13 +39,8 @@
</el-table> </el-table>
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" /> <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" :group="group" @idsToParentEvent="getChildData($event)"></device-list> <deviceList ref="groupDeviceList" :group="group"></deviceList>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleDeviceSelected"> </el-button>
<el-button @click="closeSelectDeviceList"> </el-button>
</div>
</el-dialog>
<!-- 添加或修改设备分组对话框 --> <!-- 添加或修改设备分组对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
@@ -78,7 +73,6 @@ import {
delGroup, delGroup,
addGroup, addGroup,
updateGroup, updateGroup,
updateDeviceGroups
} from "@/api/iot/group"; } from "@/api/iot/group";
export default { export default {
@@ -89,9 +83,9 @@ export default {
data() { data() {
return { return {
// 是否管理员 // 是否管理员
isAdmin:false, isAdmin: false,
// 我的分组 // 我的分组
myGroup:false, myGroup: false,
// 遮罩层 // 遮罩层
loading: true, loading: true,
// 选中数组 // 选中数组
@@ -110,8 +104,6 @@ export default {
title: "", title: "",
// 是否显示弹出层 // 是否显示弹出层
open: false, open: false,
// 是否显示设备列表
openDeviceList: false,
// 查询参数 // 查询参数
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
@@ -131,11 +123,10 @@ export default {
trigger: "blur" trigger: "blur"
}], }],
groupOrder: [{ groupOrder: [{
required: true, required: true,
message: "分组排序不能为空,最大值为99", message: "分组排序不能为空,最大值为99",
trigger: "blur" trigger: "blur"
} }],
],
} }
}; };
}, },
@@ -150,8 +141,8 @@ export default {
} }
}, },
// 我的分组改变事件 // 我的分组改变事件
myGroupChange(){ myGroupChange() {
this.queryParams.userId=this.myGroup?this.$store.state.user.userId:null; this.queryParams.userId = this.myGroup ? this.$store.state.user.userId : null;
}, },
/** 查看设备按钮操作 */ /** 查看设备按钮操作 */
handleViewDevice(groupId) { handleViewDevice(groupId) {
@@ -177,10 +168,6 @@ export default {
this.open = false; this.open = false;
this.reset(); this.reset();
}, },
// 关闭选择设备列表
closeSelectDeviceList() {
this.openDeviceList = false;
},
// 表单重置 // 表单重置
reset() { reset() {
this.form = { this.form = {
@@ -233,8 +220,8 @@ export default {
/** 选择设备 */ /** 选择设备 */
selectDevice(row) { selectDevice(row) {
this.group = row; this.group = row;
this.openDeviceList = true; // 刷新子组件
// this.$refs.deviceList.getDeviceIdsByGroupId(row.groupId); this.$refs.groupDeviceList.openDeviceList = true;
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
@@ -272,17 +259,6 @@ export default {
...this.queryParams ...this.queryParams
}, `group_${new Date().getTime()}.xlsx`) }, `group_${new Date().getTime()}.xlsx`)
}, },
// 获取子组件选中的ID数组
getChildData(data) {
this.group.deviceIds = data;
},
// 更新分组下的设备
handleDeviceSelected() {
updateDeviceGroups(this.group).then(response => {
this.$modal.msgSuccess("更新分组下的设备成功");
this.openDeviceList = false;
})
}
} }
}; };
</script> </script>