From 70e75350a1a24147ddbc50f8051ba8fd510f0c3e Mon Sep 17 00:00:00 2001 From: fengxiang <110431245@qq.com> Date: Thu, 10 May 2018 13:25:59 +0800 Subject: [PATCH] 安装用户 是否删除 过滤 --- src/app/routes/devices/monitor-point/monitor-point.component.ts | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/routes/devices/monitor-point/monitor-point.component.ts b/src/app/routes/devices/monitor-point/monitor-point.component.ts index 2b2d1c4..9b1a017 100644 --- a/src/app/routes/devices/monitor-point/monitor-point.component.ts +++ b/src/app/routes/devices/monitor-point/monitor-point.component.ts @@ -52,12 +52,12 @@ width: '300px' } }; - this.grid.title = '���������'; + this.grid.title = '������������'; this.grid.setColumns(this.monitorPoint); this.grid.pageSize = 10; } constructor( - private coorPickerService:CoorPickerService, + private coorPickerService: CoorPickerService, private monitorPointService: MonitorPointService, private confirmServ: NzModalService, @@ -179,21 +179,21 @@ } configCoord(record: MonitorPoint): void { Object.assign(this.coorPickerService.data, record); - let _data = this.coorPickerService.data; + const _data = this.coorPickerService.data; const areaNames = record.areaNames; let adress = null; if (areaNames != null) { adress = areaNames.provinceName + areaNames.cityName + areaNames.areaName + record.address; } this.coorPickerService.data.address = adress; - this.coorPickerService.data['describe'] = '���������������'; + this.coorPickerService.data['describe'] = '������������������'; this.modalHelper.static(CoordinatesPickerComponent).subscribe( (staticComp) => { const data: MonitorPoint = { id: record.id, longitude: _data.longitude, latitude: _data.latitude, - } + }; this.monitorPointService.save(data).subscribe( (res: any) => { if (res.code === 1) { -- Gitblit v1.8.0