刘向辉 3 years ago
parent
commit
b88003b6c9
  1. 14
      src/app/system-management/role/editrole/editrole.component.ts
  2. 17
      src/app/system-management/role/role.component.ts
  3. 17
      src/app/system-management/user/edituser/edituser.component.ts
  4. 42
      src/app/system-management/user/user.component.ts

14
src/app/system-management/role/editrole/editrole.component.ts

@ -10,26 +10,30 @@ import { HttpClient } from '@angular/common/http';
export class EditroleComponent implements OnInit { export class EditroleComponent implements OnInit {
@Input() data?: any; @Input() data?: any;
@Input() optionList?: any;
validateForm!: FormGroup; validateForm!: FormGroup;
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient) { } constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient) { }
multipleValue:any multipleValue: any
ngOnInit(): void { ngOnInit(): void {
this.multipleValue = this.data.grantedPermissions this.multipleValue = this.data.grantedPermissions
this.loadMore();
this.validateForm = this.fb.group({ this.validateForm = this.fb.group({
name: [null, [Validators.required]], name: [null, [Validators.required]],
power: [null, [Validators.required]] power: [null, [Validators.required]]
}); });
if (this.optionList.length == 0) {
this.loadMore()
}
} }
destroyModal(): void { destroyModal(): void {
this.modal.destroy({ data: 'this the result data' }); this.modal.destroy({ data: 'this the result data' });
} }
optionList = []; // optionList = [];
//获取权限列表 //获取权限列表
loadMore() { loadMore() {
this.http.get('/api/services/app/Role/GetAllPermissions').subscribe((data:any) => { this.http.get('/api/services/app/Role/GetAllPermissions').subscribe((data: any) => {
this.optionList = data.result.items this.optionList = data.result.items
this.modal.containerInstance.config.nzOkLoading = false this.modal.containerInstance.config.nzOkLoading = false
// console.log('所有权限',data) // console.log('所有权限',data)

17
src/app/system-management/role/role.component.ts

@ -17,6 +17,8 @@ export class RoleComponent implements OnInit {
ngOnInit(): void { ngOnInit(): void {
this.getAllRoles() this.getAllRoles()
this.loadMore()
} }
listOfData: any[] = []; listOfData: any[] = [];
@ -68,7 +70,15 @@ export class RoleComponent implements OnInit {
// Return a result when closed // Return a result when closed
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result)); modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result));
} }
optionList = [];
//获取权限列表
loadMore() {
this.http.get('/api/services/app/Role/GetAllPermissions').subscribe((data: any) => {
this.optionList = data.result.items
// this.modal.containerInstance.config.nzOkLoading = false
// console.log('所有权限',data)
})
}
edit(item) { edit(item) {
const modal = this.modal.create({ const modal = this.modal.create({
@ -76,9 +86,10 @@ export class RoleComponent implements OnInit {
nzContent: EditroleComponent, nzContent: EditroleComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
nzWidth: 325, nzWidth: 325,
nzOkLoading: true, // nzOkLoading: true,
nzComponentParams: { nzComponentParams: {
data: item data: item,
optionList: this.optionList
}, },
nzOnOk: async () => { nzOnOk: async () => {
if (instance.validateForm.valid) { if (instance.validateForm.valid) {

17
src/app/system-management/user/edituser/edituser.component.ts

@ -12,6 +12,8 @@ import { TreeService } from 'src/app/service/tree.service';
export class EdituserComponent implements OnInit { export class EdituserComponent implements OnInit {
@Input() data?: any; @Input() data?: any;
@Input() listOfData?: any;
@Input() nodes?: any;
validateForm!: FormGroup; validateForm!: FormGroup;
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { }
@ -23,15 +25,20 @@ export class EdituserComponent implements OnInit {
role: [null, [Validators.required]], role: [null, [Validators.required]],
phonenum: [null, [Validators.required]] phonenum: [null, [Validators.required]]
}); });
Promise.all([this.getAllRoles(), this.getAllOrganization()]).then(()=>{ // Promise.all([this.getAllRoles(), this.getAllOrganization()]).then(()=>{
this.modal.containerInstance.config.nzOkLoading = false // this.modal.containerInstance.config.nzOkLoading = false
}) // })
if(this.listOfData.length == 0){
this.getAllRoles()
}
if(this.nodes.length == 0){
this.getAllOrganization()
}
} }
destroyModal(): void { destroyModal(): void {
this.modal.destroy({ data: 'this the result data' }); this.modal.destroy({ data: 'this the result data' });
} }
listOfData: any[] = [];
//获取角色列表 //获取角色列表
async getAllRoles() { async getAllRoles() {
@ -43,7 +50,7 @@ export class EdituserComponent implements OnInit {
}) })
} }
//获取所有组织机构 //获取所有组织机构
nodes: any = []
async getAllOrganization() { async getAllOrganization() {
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id
let params = { let params = {

42
src/app/system-management/user/user.component.ts

@ -5,6 +5,7 @@ import { AdduserComponent } from './adduser/adduser.component';
import { NzMessageService } from 'ng-zorro-antd/message'; import { NzMessageService } from 'ng-zorro-antd/message';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { EdituserComponent } from './edituser/edituser.component'; import { EdituserComponent } from './edituser/edituser.component';
import { TreeService } from 'src/app/service/tree.service';
@Component({ @Component({
selector: 'app-user', selector: 'app-user',
templateUrl: './user.component.html', templateUrl: './user.component.html',
@ -12,13 +13,16 @@ import { EdituserComponent } from './edituser/edituser.component';
}) })
export class UserComponent implements OnInit { export class UserComponent implements OnInit {
validateForm!: FormGroup; validateForm!: FormGroup;
constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient) { } constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient, private toTree: TreeService) { }
ngOnInit(): void { ngOnInit(): void {
this.validateForm = this.fb.group({ this.validateForm = this.fb.group({
search: [null] search: [null]
}); });
this.getAllUsers() this.getAllUsers()
this.getAllRoles()
this.getAllOrganization()
} }
@ -48,6 +52,37 @@ export class UserComponent implements OnInit {
this.getAllUsers() this.getAllUsers()
} }
listOfData:any = []
//获取角色列表
async getAllRoles() {
await new Promise<void>((resolve, reject) => {
this.http.get('/api/services/app/Role/GetAll').subscribe((data: any) => {
resolve(data)
this.listOfData = data.result.items
})
})
}
//获取所有组织机构
nodes: any = []
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 => {
element.key = element.id
element.title = element.displayName
});
this.nodes = [...this.toTree.toTree(data.result.items)]
resolve(data)
})
})
}
//搜索框提交 //搜索框提交
@ -115,12 +150,13 @@ export class UserComponent implements OnInit {
nzContent: EdituserComponent, nzContent: EdituserComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
nzWidth: 288, nzWidth: 288,
nzOkLoading: true, // nzOkLoading: true,
nzComponentParams: { nzComponentParams: {
data: data, data: data,
listOfData:this.listOfData,
nodes:this.nodes
}, },
nzOnOk: async () => { nzOnOk: async () => {
console.log('hhhhhhh', instance.validateForm)
if (instance.validateForm.valid) { if (instance.validateForm.valid) {
await new Promise(resolve => { await new Promise(resolve => {
let body = { let body = {

Loading…
Cancel
Save