Commit 27c933dd authored by wangqinghua's avatar wangqinghua

update

parent e2e98fca
......@@ -322,7 +322,7 @@
</ng-container>
<ng-container *ngIf="searchStatus">
<ng-container *ngFor="let item of searchData">
<ng-container *ngFor="let item of nzTable.data">
<tr>
<td nzShowCheckbox [nzIndeterminate]="indeterminate" (nzCheckedChange)="selectChecked($event,item)"
[(nzChecked)]="item.checked"></td>
......
......@@ -142,7 +142,6 @@ export class BasicComponent implements OnInit {
search(status) {
this.loading = true;
this.searchStatus = true;
this.frontPagination = false;
const data = {
search: {
status: status,
......@@ -152,7 +151,7 @@ export class BasicComponent implements OnInit {
this.overAllSer.find(data).subscribe(
(res) => {
if (res.errCode == 10000) {
this.searchData = res.data;
this.dataSet = res.data;
}
this.loading = false;
}
......@@ -162,7 +161,6 @@ export class BasicComponent implements OnInit {
//backList
backList() {
this.searchStatus = false;
this.frontPagination = true;
}
//查询设备状态
......@@ -235,7 +233,6 @@ export class BasicComponent implements OnInit {
select() {
this.loading = true;
this.searchStatus = false;
this.frontPagination = true;
this.findOpStatus();
if (this.selectedValue == 'group') {
this.overAllSer.getgroups({}).subscribe(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment