Browse Source

[新增]完成通知时间页面

dev
邵佳豪 3 years ago
parent
commit
a1fd840fb6
  1. 16
      src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html
  2. 4
      src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts
  3. 5
      src/app/pages/audit/audit-inform-time/audit-inform-time.component.html
  4. 24
      src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts
  5. 2
      src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.html
  6. 6
      src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss
  7. 43
      src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts

16
src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html

@ -7,23 +7,23 @@
</div>
<div class="content">
<p>山东省某中化公司</p>
<p>{{organizationName}}</p>
<div class="cutoffrule"></div>
<p class="flexp">
<span>办理提醒时间:修改时间 80</span>
<span>默认时间 90</span>
<span>办理提醒时间:修改时间 {{data.handleRemindDays}}</span>
<span>默认时间 {{data.handleRemindDaysDefault}}</span>
</p>
<div class="cutoffrule"></div>
<p class="flexp">
<span>临期提醒时间:修改时间 15</span>
<span>默认时间 30</span>
<span>临期提醒时间:修改时间 {{data.closingRemindDays}}</span>
<span>默认时间 {{data.closingRemindDaysDefault}}</span>
</p>
<div class="cutoffrule"></div>
<p>修改说明:修改原因陈述修改原因陈述,修改原因陈述。</p>
<p>修改说明:{{data.remark}}</p>
<div class="cutoffrule"></div>
<p>审核状态:审核驳回</p>
<p>审核状态:{{data.auditStatus | auditStatus}}</p>
<div class="cutoffrule"></div>
<p>驳回说明:不同意</p>
<p>驳回说明:</p>
</div>

4
src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts

@ -10,7 +10,11 @@ export class AuditDetailsInformTimeComponent implements OnInit {
@Input() data?: any;
constructor(private modal: NzModalRef) { }
organizationName
ngOnInit(): void {
this.organizationName = JSON.parse(sessionStorage.getItem('userdata')).organization.displayName
}
destroyModal() {
this.modal.destroy({ data: 'this the result data' });

5
src/app/pages/audit/audit-inform-time/audit-inform-time.component.html

@ -32,7 +32,10 @@
<td>{{item.commitTime ? (item.commitTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}}</td>
<td>{{item.auditStatus | auditStatus}}</td>
<td class="operation">
<span class="blueColor" (click)="edit(item)">编辑</span>
<span class="blueColor" (click)="edit(item)"
[ngClass]="{'greyColor': item.auditStatus == 1}">编辑</span>
<span class="blueColor" (click)="unCommit(item)"
*ngIf="item.auditStatus == 1">撤销审核</span>
<span class="blueColor" (click)="details(item)">审核详情</span>
</td>
</tr>

24
src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts

@ -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', '撤销审核失败');
})
}
}

2
src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.html

@ -47,7 +47,7 @@
<div class="btnbox">
<button nz-button type="submit" class="ok" (click)="ok()">提交审核</button>
<button nz-button type="submit" class="ok" (click)="ok()" [nzLoading]="isLoading">提交审核</button>
<button nz-button type="button" class="cancel" (click)="destroyModal()">取消</button>
</div>
</form>

6
src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss

@ -54,13 +54,13 @@
display: flex;
flex-direction: column;
box-sizing: border-box;
padding:0 6px;
padding: 0 6px;
}
}
.explain {
box-sizing: border-box;
padding:0 6px;
padding: 0 6px;
textarea {
width: 100%;
@ -77,6 +77,8 @@
margin-bottom: 17px;
display: flex;
justify-content: flex-end;
box-sizing: border-box;
padding: 0 7px;
button {
border-radius: 0px;

43
src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts

@ -3,6 +3,7 @@ import { NzModalRef } from 'ng-zorro-antd/modal';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { HttpClient } from '@angular/common/http';
import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({
selector: 'app-edit-inform-time',
templateUrl: './edit-inform-time.component.html',
@ -13,25 +14,53 @@ export class EditInformTimeComponent implements OnInit {
@Input() data?: any;
validateForm!: FormGroup;
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { }
constructor(private message: NzMessageService, private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { }
data2
dataCopy
ngOnInit(): void {
this.dataCopy = JSON.parse(JSON.stringify(this.data))
this.validateForm = this.fb.group({
time1: [null, [Validators.required]],
time2: [null, [Validators.required]],
time1: [this.dataCopy.handleRemindDays, [Validators.required]],
time2: [this.dataCopy.closingRemindDays, [Validators.required]],
explain: [null]
});
this.data2 = JSON.parse(JSON.stringify(this.data))
}
destroyModal() {
this.modal.destroy({ data: 'this the result data' });
}
isLoading = false
ok() {
this.modal.triggerOk()
if (this.validateForm.valid) {
this.isLoading = true
let body = {
licenseTypeId: this.dataCopy.licenseTypeId,
organizationId: this.dataCopy.organizationId,
handleRemindDays: this.validateForm.value.time1,
closingRemindDays: this.validateForm.value.time2,
remark: this.validateForm.value.explain
}
console.log(body)
this.http.put('/api/services/app/OrganizationValidityLicenseRule/UpdateAndCommit', body).subscribe((data) => {
console.log('提交审核成功')
this.message.create('success', '提交审核成功');
this.isLoading = false
this.modal.triggerOk()
}, err => {
this.message.create('error', '提交审核失败');
this.isLoading = false
})
} else {
this.message.create('warning', '请填写完整!');
}
}

Loading…
Cancel
Save