From f7e769724d3adcde212065dae849f31f7e5db84a Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Fri, 16 Mar 2018 14:12:05 +0800 Subject: [PATCH] 优化 --- src/app/routes/report/report.component.html | 62 ++++++++++++++++++++++++++++++- 1 files changed, 60 insertions(+), 2 deletions(-) diff --git a/src/app/routes/report/report.component.html b/src/app/routes/report/report.component.html index 8890aed..94fb4d1 100644 --- a/src/app/routes/report/report.component.html +++ b/src/app/routes/report/report.component.html @@ -1,3 +1,61 @@ -<!-- <input type='button' value='������' class='notprint' onclick='javascript:window.print();' /> --> +<html> +<body> + <nz-spin [nzTip]="'������������������...'" [nzSize]="'large'"[nzSpinning]="spinning"> </nz-spin> -<div id ="mydiv" style="height: 300px; width: 100%"></div> + <div> + <div class="bg" *ngIf="! spinning"> + <div class="t_bg"> + <img src="./assets/img/logo.png"> + + <h1>2018���01���������������������������</h1> + <div class="container"> + <div class="title"> + <div class="title_left"></div> + <div class="text"> + <span *ngFor="let item of items;let i = index"> + <span *ngIf="i > 0">���</span> + {{item.monitorPointName}} + </span> + <span > + ������������������ + </span> + </div> + <div class="title_right"></div> + <div class="clear_fix"></div> + </div> + </div> + + <div class="content"> + <div *ngFor="let item of items;let i = index"> + <div class="left"> + <h2>{{item.monitorPointName}}</h2> + <p class="text1">���������������{{item.monitorPointAddress}}</p> + <p class="text1">���������������������{{item.deviceCount}}���</p> + <div class="clear_fix"></div> + </div> + </div> + <div class="clear_fix"></div> + </div> + </div> + </div> + + + <div id="content" style="display: none;"> + <div *ngFor="let i of sensorArr"> + <div id="mydiv{{i}}" style="height: 487px; width: 1000px"></div> + </div> + </div> + + <!-- <div id="foot" style="height: 486px; width: 1000px"> + <h1>������������������</h1> + </div> --> + + <div class="bg" *ngIf="! spinning"> + <div class="t_bg_b"> + <h1>2018���01������������������������������</h1> + </div> + </div> + + </div> +</body> +</html> -- Gitblit v1.8.0