Newer
Older
import {Component, EventEmitter, OnInit, Output, ViewChild} from '@angular/core';
import {AlarmService} from '../../alarm/alarm.service';
import {pageSize} from '../../app.constants';
import {NzMessageService} from 'ng-zorro-antd';
import {SendLogComponent} from '../../alarm/modal/send-log/send-log.component';
@Component({
selector: 'smart-warn-list',
templateUrl: './warn-list.component.html',
styles: [
`
.list-icon {
font-size: 20px;
text-align: center;
color: #8cb6ce;
}
.anticon{
font-size: 18px;
}
@ViewChild('sendLog') sendLog: SendLogComponent;
@Output() total = new EventEmitter<any>();
warnList = [];
obj;
pageNum = 1;
pageCount = pageSize;
totalNum;
loading = false;
constructor(public alarmSer: AlarmService, public message: NzMessageService) {
getList(obj) {
this.obj = obj;
this.loading = true;
const data = {
pageNum: this.pageNum,
pageCount: this.pageCount,
this.warnList = res.data.data;
this.totalNum = res.data.totalNum;
this.total.emit(this.totalNum);
}
change(e) {
if (e > 0) {
this.pageNum = e;
this.getList(this.obj);
}