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: [
font-size: 20px;
text-align: center;
color: #8cb6ce;
}
`
]
})
export class WarnListComponent implements OnInit {
@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,
private commonSer: CommonService) {
getList(obj) {
this.obj = obj;
this.loading = true;
const data = {
pageNum: this.pageNum,
pageCount: this.pageCount,
const endTime = e.endTime.replace(/-/g, '/');
const createTime = e.createTime.replace(/-/g, '/');
const continuedTime = (new Date(endTime).getTime()) - (new Date(createTime).getTime());
e.continuedTime = this.commonSer.unitTime(continuedTime);
}
});
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);
}