设备筛选bug处理

This commit is contained in:
kerwincui
2022-06-10 13:52:44 +08:00
parent 72cd1e95fd
commit 6f2800cdb8
3 changed files with 15 additions and 16 deletions

View File

@@ -259,11 +259,13 @@ export default {
let productId = this.$route.query.productId
if (productId != null) {
this.queryParams.productId = Number(productId);
this.queryParams.groupId=null;
}
// 分组筛选
let groupId = this.$route.query.groupId
if (groupId != null) {
this.queryParams.groupId = Number(groupId);
this.queryParams.productId=null;
}
this.getList();
@@ -278,11 +280,13 @@ export default {
let productId = this.$route.query.productId
if (productId != null) {
this.queryParams.productId = Number(productId);
this.queryParams.groupId=null;
}
// 分组筛选
let groupId = this.$route.query.groupId
if (groupId != null) {
this.queryParams.groupId = Number(groupId);
this.queryParams.productId=null;
}
this.getList();
}