|
|
|
@ -96,7 +96,7 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addOr(node?: any) { |
|
|
|
|
console.log(node) |
|
|
|
|
// console.log(node)
|
|
|
|
|
const modal = this.modal.create({ |
|
|
|
|
nzTitle: node ? '新增组织机构' : '新增一级组织机构', |
|
|
|
|
nzContent: AddorComponent, |
|
|
|
@ -104,13 +104,15 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
nzWidth: 288, |
|
|
|
|
nzComponentParams: {}, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
console.log('hhhhhhh', instance.validateForm) |
|
|
|
|
// console.log('hhhhhhh', instance.validateForm)
|
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let isGasStation |
|
|
|
|
instance.validateForm.value.OrgnizationLevel == 4 ? isGasStation = true : isGasStation = false |
|
|
|
|
let body = { |
|
|
|
|
parentId: node ? Number(node.key) : null, |
|
|
|
|
displayName: instance.validateForm.value.name, |
|
|
|
|
isGasStation: instance.validateForm.value.isGasStation, |
|
|
|
|
isGasStation: isGasStation, |
|
|
|
|
isSkipAudit: !instance.validateForm.value.isParticipationAudit, |
|
|
|
|
level: instance.validateForm.value.OrgnizationLevel, |
|
|
|
|
} |
|
|
|
@ -147,14 +149,16 @@ export class OrganizationComponent implements OnInit {
|
|
|
|
|
data: node.origin, |
|
|
|
|
}, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
console.log('hhhhhhh', instance.validateForm) |
|
|
|
|
// console.log('hhhhhhh', instance.validateForm)
|
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let isGasStation |
|
|
|
|
instance.validateForm.value.OrgnizationLevel == 4 ? isGasStation = true : isGasStation = false |
|
|
|
|
let body = { |
|
|
|
|
id: node.origin.id, |
|
|
|
|
parentId: node.origin.parentId, |
|
|
|
|
displayName: instance.validateForm.value.name, |
|
|
|
|
isGasStation: instance.validateForm.value.isGasStation, |
|
|
|
|
isGasStation: isGasStation, |
|
|
|
|
isSkipAudit: !instance.validateForm.value.isParticipationAudit, |
|
|
|
|
level: instance.validateForm.value.OrgnizationLevel |
|
|
|
|
} |
|
|
|
|