|
|
|
@ -15,83 +15,148 @@ import { UnitEditComponent } from '../unit-edit/unit-edit.component'
|
|
|
|
|
styleUrls: ['./unit.component.scss'] |
|
|
|
|
}) |
|
|
|
|
export class UnitComponent implements OnInit { |
|
|
|
|
checked = true |
|
|
|
|
|
|
|
|
|
listOfData: any = []; |
|
|
|
|
integrity = 0 |
|
|
|
|
validateForm!: FormGroup; |
|
|
|
|
|
|
|
|
|
constructor(private router: Router, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService, private modal: NzModalService, private message: NzMessageService, private viewContainerRef: ViewContainerRef) { } |
|
|
|
|
|
|
|
|
|
datas = "" |
|
|
|
|
PageNumber = 1 |
|
|
|
|
PageSize = 10 |
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.getCompanies() |
|
|
|
|
this.getBuildingTypes() |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
} |
|
|
|
|
expandKeys |
|
|
|
|
defaultOrId: string |
|
|
|
|
//获取所有组织机构
|
|
|
|
|
nodes: any = [] |
|
|
|
|
getAllOrganization() { |
|
|
|
|
let organizationId = JSON.parse(sessionStorage.getItem('userData')).organizationId |
|
|
|
|
let params = { |
|
|
|
|
OrganizationId: organizationId || '', |
|
|
|
|
ContainsChildren: "true", |
|
|
|
|
PageNumber: 1, |
|
|
|
|
PageSize: 9999 |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/Organizations', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
data.items.forEach(element => { |
|
|
|
|
if (element.id == organizationId) { |
|
|
|
|
element.parentId = null |
|
|
|
|
} |
|
|
|
|
element.key = element.id |
|
|
|
|
element.title = element.name |
|
|
|
|
}); |
|
|
|
|
this.nodes = [...this.toTree.toTree(data.items)] |
|
|
|
|
this.searchValue.or = JSON.parse(sessionStorage.getItem('userData')).organizationId |
|
|
|
|
|
|
|
|
|
searchValue = ''; |
|
|
|
|
|
|
|
|
|
next() { |
|
|
|
|
this.router.navigate(['/basicInfo/unit/details']); |
|
|
|
|
//回显
|
|
|
|
|
let unitPagesData = JSON.parse(sessionStorage.getItem('unitPagesData')) || null |
|
|
|
|
if (unitPagesData) { |
|
|
|
|
this.searchValue = unitPagesData.searchValue |
|
|
|
|
this.PageNumber = unitPagesData.PageNumber |
|
|
|
|
} |
|
|
|
|
this.getCompanies() |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
totalCount |
|
|
|
|
pageChange($event) { |
|
|
|
|
|
|
|
|
|
BuildingTypes |
|
|
|
|
getBuildingTypes() { |
|
|
|
|
this.http.get('/api/BuildingTypes').subscribe((data: any) => { |
|
|
|
|
this.BuildingTypes = data |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
searchValue = { |
|
|
|
|
unit: '', |
|
|
|
|
uniytype: '', |
|
|
|
|
or: JSON.parse(sessionStorage.getItem('userData')).organizationId, |
|
|
|
|
property: '' |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nzLoading = false |
|
|
|
|
totalCount |
|
|
|
|
|
|
|
|
|
getCompanies() { |
|
|
|
|
this.nzLoading = true |
|
|
|
|
this.http.get('/api/Companies').subscribe((data: any) => { |
|
|
|
|
let params = { |
|
|
|
|
CompanyName: this.searchValue.unit, |
|
|
|
|
PageNumber: this.PageNumber, |
|
|
|
|
PageSize: this.PageSize |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/Companies', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
this.nzLoading = false |
|
|
|
|
console.log(data); |
|
|
|
|
this.totalCount = data.totalCount |
|
|
|
|
this.listOfData = data.items |
|
|
|
|
this.listOfData = [...this.listOfData] |
|
|
|
|
console.log(this.listOfData); |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
pageChange($event) { |
|
|
|
|
this.PageNumber = $event |
|
|
|
|
this.getCompanies() |
|
|
|
|
} |
|
|
|
|
search() { |
|
|
|
|
this.PageNumber = 1 |
|
|
|
|
this.getCompanies() |
|
|
|
|
} |
|
|
|
|
reset() { |
|
|
|
|
this.PageNumber = 1 |
|
|
|
|
this.searchValue = { |
|
|
|
|
unit: '', |
|
|
|
|
uniytype: '', |
|
|
|
|
or: JSON.parse(sessionStorage.getItem('userData')).organizationId, |
|
|
|
|
property: '' |
|
|
|
|
}; |
|
|
|
|
this.getCompanies() |
|
|
|
|
} |
|
|
|
|
ngOnDestroy(): void { |
|
|
|
|
// CustomReuseStrategy.deleteRouteSnapshot('/basicInfo/unit');
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
addOr(node?: any) { |
|
|
|
|
|
|
|
|
|
addUnit() { |
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzTitle: "新增单位", |
|
|
|
|
nzContent: AddUnitComponent, |
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 450, |
|
|
|
|
nzComponentParams: {}, |
|
|
|
|
nzComponentParams: { |
|
|
|
|
nodes: this.nodes, |
|
|
|
|
BuildingTypes: this.BuildingTypes |
|
|
|
|
}, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
console.log(instance.validateForm); |
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
console.log(instance.validateForm); |
|
|
|
|
// return
|
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
await new Promise((resolve, reject) => { |
|
|
|
|
let body = { |
|
|
|
|
companyName: instance.validateForm.value.unit, |
|
|
|
|
directorName: instance.validateForm.value.name, |
|
|
|
|
directorPhone: instance.validateForm.value.iphone, |
|
|
|
|
companyName: instance.validateForm.value.unitname, |
|
|
|
|
directorName: instance.validateForm.value.person, |
|
|
|
|
directorPhone: instance.validateForm.value.phone, |
|
|
|
|
address: instance.validateForm.value.addr, |
|
|
|
|
organizationId: instance.validateForm.value.role || null, |
|
|
|
|
relatedOrganizationId: instance.validateForm.value.role2 || null, |
|
|
|
|
buildingTypeId: instance.validateForm.value.role4 || null, |
|
|
|
|
organizationId: instance.validateForm.value.orStation || null, |
|
|
|
|
relatedOrganizationId: instance.validateForm.value.orDa || null, |
|
|
|
|
buildingTypeId: instance.validateForm.value.unittype || null, |
|
|
|
|
useNature: instance.validateForm.value.nature, |
|
|
|
|
data: null |
|
|
|
|
} |
|
|
|
|
this.http.post('/api/Companies', body).subscribe({ |
|
|
|
|
next: (data: any) => { |
|
|
|
|
console.log(data, 80808) |
|
|
|
|
|
|
|
|
|
next: async (data) => { |
|
|
|
|
this.message.create('success', '创建成功'); |
|
|
|
|
resolve(data) |
|
|
|
|
await this.getCompanies() |
|
|
|
|
return true |
|
|
|
|
}, |
|
|
|
|
error: (err) => { |
|
|
|
|
|
|
|
|
|
console.log(err) |
|
|
|
|
} |
|
|
|
|
this.message.create('warning', '创建失败'); |
|
|
|
|
reject(err) |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
@ -106,14 +171,34 @@ export class UnitComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
look(data) { |
|
|
|
|
let unitPagesData = { |
|
|
|
|
searchValue: this.searchValue, |
|
|
|
|
PageNumber: this.PageNumber |
|
|
|
|
} |
|
|
|
|
sessionStorage.setItem('unitPagesData', JSON.stringify(unitPagesData)) |
|
|
|
|
this.router.navigate(['/basicInfo/unit/details'], { queryParams: { id: data.id, pattern: 'look' } }) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
edit(data) { |
|
|
|
|
let unitPagesData = { |
|
|
|
|
searchValue: this.searchValue, |
|
|
|
|
PageNumber: this.PageNumber |
|
|
|
|
} |
|
|
|
|
sessionStorage.setItem('unitPagesData', JSON.stringify(unitPagesData)) |
|
|
|
|
this.router.navigate(['/basicInfo/unit/details'], { queryParams: { id: data.id, pattern: 'edit' } }) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
delete(data) { |
|
|
|
|
|
|
|
|
|
delete(item) { |
|
|
|
|
this.modal.confirm({ |
|
|
|
|
nzTitle: `确定要删除${item.companyName}这个单位吗?`, |
|
|
|
|
nzOkText: '确定', |
|
|
|
|
nzOkType: 'default', |
|
|
|
|
nzOnOk: () => { |
|
|
|
|
this.http.delete(`/api/Users/${item.id}`).subscribe(data => { |
|
|
|
|
this.message.create('success', '删除成功!'); |
|
|
|
|
this.getCompanies() |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
nzCancelText: '取消' |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|