|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
|
import { Component, ElementRef, OnInit, ViewContainerRef } from '@angular/core'; |
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
|
import { NzModalService } from 'ng-zorro-antd/modal'; |
|
|
|
|
import { Observable, fromEvent } from 'rxjs'; |
|
|
|
|
import { debounceTime } from 'rxjs/operators'; |
|
|
|
@ -14,7 +15,7 @@ import { EditInformTimeComponent } from './edit-inform-time/edit-inform-time.com
|
|
|
|
|
}) |
|
|
|
|
export class AuditInformTimeComponent implements OnInit { |
|
|
|
|
|
|
|
|
|
constructor(private http: HttpClient, private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } |
|
|
|
|
constructor(private message: NzMessageService, private http: HttpClient, private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } |
|
|
|
|
tableSpin = false |
|
|
|
|
list = [] |
|
|
|
|
|
|
|
|
@ -44,7 +45,7 @@ export class AuditInformTimeComponent implements OnInit {
|
|
|
|
|
this.http.get('/api/services/app/OrganizationValidityLicenseRule/GetCurOrgRules', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
this.list = this.list.concat(data.result); |
|
|
|
|
this.list = data.result |
|
|
|
|
this.list = [...this.list] |
|
|
|
|
console.log('时间表格', data) |
|
|
|
|
this.tableSpin = false |
|
|
|
@ -61,6 +62,11 @@ export class AuditInformTimeComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
edit(item) { |
|
|
|
|
console.log('item', item) |
|
|
|
|
if (item.auditStatus == 1) { |
|
|
|
|
this.message.create('warning', '审核中不允许编辑'); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzContent: EditInformTimeComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
@ -78,7 +84,7 @@ export class AuditInformTimeComponent implements OnInit {
|
|
|
|
|
nzFooter: null, |
|
|
|
|
nzClosable: false, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
|
|
|
|
|
this.getTimeList() |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
@ -109,4 +115,16 @@ export class AuditInformTimeComponent implements OnInit {
|
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
modal.afterClose.subscribe(result => { }); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
unCommit(item) { |
|
|
|
|
let params = { |
|
|
|
|
id: item.id |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/services/app/OrganizationValidityLicenseRule/Uncommit', '', { params: params }).subscribe((data) => { |
|
|
|
|
this.message.create('success', '撤销审核成功'); |
|
|
|
|
this.getTimeList() |
|
|
|
|
}, err => { |
|
|
|
|
this.message.create('error', '撤销审核失败'); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|