aboutsummaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/components/graphiclist/graphiclist.component.html
blob: 8a1e64da3b00ed0e3b117eba900861f88c7da658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!--
    Copyright (C) 2018 CMCC, Inc. and others. All rights reserved.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<div class="content">
      <!-- <nz-modal nzWrapClassName="vertical-center-modal" [(nzVisible)]="isVisibleMiddle" nzTitle="Alarm Chart" (nzOnCancel)="handleCancelMiddle()" (nzOnOk)="handleOkMiddle()">
          <app-line [initData]="alarmChartInitBig" [chartData]="alarmChartDataBig"></app-line>
      </nz-modal> -->
    <div class="chart">
          <div class="select">
              <span>Report Time: </span>
              <nz-range-picker [(ngModel)]="dateRange" (ngModelChange)="onChange($event)" nzShowTime></nz-range-picker>
      
              <button class="search" nz-button [nzType]="'primary'"><i class="anticon anticon-search"></i><span>Search</span></button>
          </div>
    </div>
    <div class="tablelist">
      <nz-table #nzTable [nzData]="dataSet" [nzPageSize]="10" nzShowSizeChanger [nzPageSizeOptions]="[5,10,15,20]" nzSize="middle">
          <thead (nzSortChange)="sort($event)" nzSingleSort>
              <tr>
              <th nzWidth="5%">NO</th>
              <th nzWidth="20%">Source Name</th>
              <th nzWidth="10%">Priority</th>
              <th nzWidth="20%">SpecificProblem</th>
              <th nzWidth="20%">Report Time</th>
              <th nzWidth="15%">Status</th>
              <th nzWidth="10%">Action</th>
              </tr>
          </thead>
          <tbody>
              <!-- <ng-template ngFor let-data [ngForOf]="nzTable.data" let-i="index"> -->
              <tr *ngFor="let item of nzTable.data; let i = index; ">
                  <td>{{i+1}}</td>
                  <td>{{item.name}}</td>
                  <td>{{item.age}}</td>
                  <td>{{item.address}}</td>
                  <td>{{item.address}}</td>
                  <td>{{item.address}}</td>
                  <td><a class="action" (click)="detailShow(i+1)"><i class="details"></i></a></td>
              </tr>
              <!-- </ng-template> -->
          </tbody>
      </nz-table>
    </div>
  </div>