From 71371f81071a72eecd7d7a02ae3825943aae50d1 Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Wed, 18 Apr 2018 08:57:38 +0800 Subject: [PATCH] 报表展示 饼图功能 --- src/app/routes/devices/monitor-point/monitor-point.component.html | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/routes/devices/monitor-point/monitor-point.component.html b/src/app/routes/devices/monitor-point/monitor-point.component.html index fd431c6..b676ceb 100644 --- a/src/app/routes/devices/monitor-point/monitor-point.component.html +++ b/src/app/routes/devices/monitor-point/monitor-point.component.html @@ -1,7 +1,7 @@ <pro-header [title]="grid.title"></pro-header> <nz-card [nzBordered]="false"> <div class="mb-md"> - <button nz-button (click)="addOrModify()" [nzType]="'primary'" [nzSize]="'large'"> + <button nz-button (click)="addOrModify($event)" [nzType]="'primary'" [nzSize]="'large'"> <i class="anticon anticon-plus"></i><span>������</span> </button> <ng-container *ngIf="grid.selectedIndexs.length > 0"> @@ -54,9 +54,11 @@ <td nz-td> <a (click)="addOrModify(row)">������</a> <span nz-table-divider></span> - <nz-popconfirm [nzTitle]="'������������������'+grid.title+'���?'" [nzOkText]="'Yes'" [nzCancelText]="'No'" (nzOnConfirm)="delete(row.id)" > + <nz-popconfirm [nzTitle]="'������������������'+grid.title+'���?'" [nzOkText]="'Yes'" [nzCancelText]="'No'" (nzOnConfirm)="delete(row.id)" > <a nz-popconfirm>������</a> - </nz-popconfirm> + </nz-popconfirm> + <span nz-table-divider></span> + <a (click)="configCoord(row)">������������</a> </td> </tr> </tbody> -- Gitblit v1.8.0