13 changed files with 395 additions and 72 deletions
@ -0,0 +1,15 @@ |
|||||||
|
<ul style="margin-bottom: 0;position: relative;"> |
||||||
|
<div class="spin" *ngIf="isLoading"> |
||||||
|
<nz-spin nzSimple class="nzspin"></nz-spin> |
||||||
|
</div> |
||||||
|
|
||||||
|
<li *ngFor="let item of warningList;let key = index"> |
||||||
|
<span> |
||||||
|
{{item.violation.eventSystemName}} |
||||||
|
</span> |
||||||
|
<span> |
||||||
|
<nz-switch [name]="key" [(ngModel)]="item.enable" nzCheckedChildren="开" nzUnCheckedChildren="关" |
||||||
|
(ngModelChange)="change(item)"></nz-switch> |
||||||
|
</span> |
||||||
|
</li> |
||||||
|
</ul> |
@ -0,0 +1,5 @@ |
|||||||
|
li{ |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: space-between; |
||||||
|
} |
@ -0,0 +1,50 @@ |
|||||||
|
import { HttpClient } from '@angular/common/http'; |
||||||
|
import { Component, Input, OnInit } from '@angular/core'; |
||||||
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-warning-events', |
||||||
|
templateUrl: './warning-events.component.html', |
||||||
|
styleUrls: ['./warning-events.component.scss'] |
||||||
|
}) |
||||||
|
export class WarningEventsComponent implements OnInit { |
||||||
|
@Input() data?: any; |
||||||
|
constructor(private http: HttpClient, private message: NzMessageService) { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
// console.log(this.data)
|
||||||
|
this.getWarningList() |
||||||
|
} |
||||||
|
|
||||||
|
warningList: any |
||||||
|
getWarningList() { |
||||||
|
this.http.get('/api/services/app/Violation/GetStationViolationConfig', { |
||||||
|
params: { |
||||||
|
organizationId: this.data.id |
||||||
|
} |
||||||
|
}).subscribe((data: any) => { |
||||||
|
|
||||||
|
data.result.forEach(element => { |
||||||
|
element.enable = !element.disabled |
||||||
|
}); |
||||||
|
this.warningList = data.result |
||||||
|
// console.log('预警列表', this.warningList)
|
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
isLoading = false |
||||||
|
change(item) { |
||||||
|
this.isLoading = true |
||||||
|
// console.log(item)
|
||||||
|
let body = { |
||||||
|
stationId: item.stationId, |
||||||
|
violationId: item.violation.id, |
||||||
|
disabled: !item.enable |
||||||
|
} |
||||||
|
this.http.post('/api/services/app/Violation/UpdateStationViolation', body).subscribe(data => { |
||||||
|
this.isLoading = false |
||||||
|
this.message.create('success', '修改成功'); |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue