|
@@ -79,7 +79,7 @@ export default {
|
|
|
(d) => selectIds.indexOf(d.deviceId) < 0
|
|
(d) => selectIds.indexOf(d.deviceId) < 0
|
|
|
);
|
|
);
|
|
|
if (filterData.length > 0) {
|
|
if (filterData.length > 0) {
|
|
|
- this.currentDevice.deviceTempList = [this.currentDevice.deviceTempList, ...filterData];
|
|
|
|
|
|
|
+ this.currentDevice.deviceTempList = [...this.currentDevice.deviceTempList, ...filterData];
|
|
|
}
|
|
}
|
|
|
} else {
|
|
} else {
|
|
|
this.currentDevice.deviceTempList = data;
|
|
this.currentDevice.deviceTempList = data;
|