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/systems/registration/registration.component.ts | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/routes/systems/registration/registration.component.ts b/src/app/routes/systems/registration/registration.component.ts index 7a00abc..70aabde 100644 --- a/src/app/routes/systems/registration/registration.component.ts +++ b/src/app/routes/systems/registration/registration.component.ts @@ -1,10 +1,10 @@ -import {environment} from "../../../../environments/environment"; +import {environment} from '../../../../environments/environment'; import {Component, OnInit, ViewChild} from '@angular/core'; -import {SimpleTableColumn} from "@delon/abc"; +import {SimpleTableColumn} from '@delon/abc'; import {_HttpClient} from '@delon/theme'; -import {Subject} from "rxjs"; import * as moment from 'moment'; -import {NzMessageService} from "ng-zorro-antd"; +import {NzMessageService} from 'ng-zorro-antd'; +import { Subject } from 'rxjs/Subject'; @Component({ selector: 'app-registration', templateUrl: './registration.component.html', @@ -41,11 +41,11 @@ } }, ]; - isVisible: boolean = false; + isVisible = false; _date = new Date(Date.now() + 3600 * 24 * 1 * 1000); ngOnInit() { - const organization = this.organization = JSON.parse(sessionStorage.getItem("organization")); + const organization = this.organization = JSON.parse(sessionStorage.getItem('organization')); this.extraParams.organizationId = organization.id; this.queryTextStream.debounceTime(900).distinctUntilChanged().subscribe(value => { this.load(); -- Gitblit v1.8.0