|
@@ -190,9 +190,9 @@ export default {
|
|
|
},
|
|
|
],
|
|
|
checkboxs: cityOptions,
|
|
|
- checkedCities: ["越限", "超限", "坏点"],
|
|
|
- checkAll: true,
|
|
|
- isIndeterminate: true,
|
|
|
+ checkedCities: [], //"越限", "超限", "坏点"
|
|
|
+ checkAll: false,
|
|
|
+ isIndeterminate: false,
|
|
|
controlErorCodes: [
|
|
|
"控制成功",
|
|
|
"控制命令发送失败",
|
|
@@ -340,14 +340,14 @@ export default {
|
|
|
let selectStatus = "";
|
|
|
let statusArr = [];
|
|
|
this.tableData = []
|
|
|
- if (this.checkedCities.length < 3) {
|
|
|
+ // if (this.checkedCities.length < 3) {
|
|
|
this.checkedCities.forEach((item) => {
|
|
|
let status = this.statusList.filter((val) => val.name === item)[0];
|
|
|
if (status.lable) {
|
|
|
statusArr.push(status.lable);
|
|
|
}
|
|
|
});
|
|
|
- }
|
|
|
+ // }
|
|
|
selectStatus = statusArr.join(",");
|
|
|
const id =
|
|
|
this.current === "all"
|
|
@@ -360,7 +360,7 @@ export default {
|
|
|
id,
|
|
|
status: selectStatus,
|
|
|
pagenum: this.pagenum,
|
|
|
- pagesize: 30,
|
|
|
+ pagesize: 50,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
this.changeData(res)
|