From 99ebebbcbdf93b1ddd0c5fe98ea4cc844965361e Mon Sep 17 00:00:00 2001 From: fengxiang <110431245@qq.com> Date: Wed, 27 Dec 2017 09:42:06 +0800 Subject: [PATCH] 设备信息修复 --- src/app/routes/devices/version/version.component.ts | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/routes/devices/version/version.component.ts b/src/app/routes/devices/version/version.component.ts index 28cc822..f2bb2d3 100644 --- a/src/app/routes/devices/version/version.component.ts +++ b/src/app/routes/devices/version/version.component.ts @@ -73,15 +73,13 @@ }); } queryTextChanged($event) { - // tslint:disable-next-line:no-debugger - debugger; - this.queryTextStream.next(this.queryText); + this.queryTextStream.next(this.queryMap.value); } load(reload: boolean = false) { if (reload) { this.grid.pageIndex = 1 ; } - this.versionService.getPagingList(this.grid, this.queryText).subscribe( + this.versionService.getPagingList(this.grid, this.queryMap.value).subscribe( (res: PageBean) => { if (res.total > 0 && res.data != null) { this.grid.initData(res); -- Gitblit v1.8.0