You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.2 KiB
112 lines
3.2 KiB
import { Component, OnInit, Input } from '@angular/core'; |
|
import { NzModalRef } from 'ng-zorro-antd/modal'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { HttpClient } from '@angular/common/http'; |
|
import { TreeService } from 'src/app/service/tree.service'; |
|
|
|
@Component({ |
|
selector: 'app-edituser', |
|
templateUrl: './edituser.component.html', |
|
styleUrls: ['./edituser.component.scss'] |
|
}) |
|
export class EdituserComponent implements OnInit { |
|
|
|
@Input() data?: any; |
|
@Input() listOfData?: any; |
|
@Input() listOfData2?: any; |
|
@Input() nodes?: any; |
|
validateForm!: FormGroup; |
|
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } |
|
|
|
ngOnInit(): void { |
|
console.log(this.data) |
|
let roleData1 = [] |
|
let roleData2 = [] |
|
this.data.roleNames.forEach(element => { |
|
if (element.indexOf('LEVEL') != -1) { |
|
roleData2.push(element) |
|
} else { |
|
roleData1.push(element) |
|
} |
|
}); |
|
this.validateForm = this.fb.group({ |
|
account: [null, [Validators.required]], |
|
name: [null, [Validators.required]], |
|
organization: [null, [Validators.required]], |
|
role: [roleData1, [Validators.required]], |
|
role2: [roleData2], |
|
phonenum: [null, [Validators.required]] |
|
}); |
|
if (this.listOfData.length == 0) { |
|
this.getAllRoles() |
|
} |
|
if (this.listOfData2.length == 0) { |
|
this.getAllRoles2() |
|
} |
|
if (this.nodes.length == 0) { |
|
this.getAllOrganization() |
|
} |
|
} |
|
|
|
destroyModal(): void { |
|
this.modal.destroy({ data: 'this the result data' }); |
|
} |
|
|
|
//获取角色列表 |
|
async getAllRoles() { |
|
let params = { |
|
SkipCount: '0', |
|
MaxResultCount: '999' |
|
} |
|
await new Promise<void>((resolve, reject) => { |
|
this.http.get('/api/services/app/Role/GetAll', { |
|
params: params |
|
}).subscribe((data: any) => { |
|
resolve(data) |
|
this.listOfData = data.result.items |
|
}) |
|
}) |
|
} |
|
|
|
//获取角色列表 |
|
async getAllRoles2() { |
|
let params = { |
|
SkipCount: '0', |
|
MaxResultCount: '999', |
|
IsViolationRoles: 'true' |
|
} |
|
await new Promise<void>((resolve, reject) => { |
|
this.http.get('/api/services/app/Role/GetAll', { |
|
params: params |
|
}).subscribe((data: any) => { |
|
resolve(data) |
|
this.listOfData2 = data.result.items |
|
}) |
|
}) |
|
} |
|
|
|
//获取所有组织机构 |
|
async getAllOrganization() { |
|
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id |
|
let params = { |
|
OrganizationUnitId: OrganizationUnitId, |
|
IsContainsChildren: "true" |
|
} |
|
await new Promise<void>((resolve, reject) => { |
|
this.http.get('/api/services/app/Organization/GetAll', { |
|
params: params |
|
}).subscribe((data: any) => { |
|
data.result.items.forEach(element => { |
|
if (element.id == OrganizationUnitId) { |
|
element.parentId = null |
|
} |
|
element.key = element.id |
|
element.title = element.displayName |
|
}); |
|
this.nodes = [...this.toTree.toTree(data.result.items)] |
|
resolve(data) |
|
}) |
|
}) |
|
} |
|
|
|
}
|
|
|