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.
51 lines
1.4 KiB
51 lines
1.4 KiB
3 years ago
|
import { Component, OnInit, Input,ViewChild } 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';
|
||
|
import { NzTreeComponent } from 'ng-zorro-antd/tree';
|
||
|
@Component({
|
||
|
selector: 'app-addrole',
|
||
|
templateUrl: './addrole.component.html',
|
||
|
styleUrls: ['./addrole.component.scss']
|
||
|
})
|
||
|
export class AddroleComponent implements OnInit {
|
||
|
|
||
|
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent;
|
||
|
@Input() data?: any;
|
||
|
@Input() nodes?: any;
|
||
|
@Input() title?: string;
|
||
|
@Input() subtitle?: string;
|
||
|
|
||
|
validateForm!: FormGroup;
|
||
|
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { }
|
||
|
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.loadMore();
|
||
|
this.validateForm = this.fb.group({
|
||
|
name: [null, [Validators.required]],
|
||
|
power: [null],
|
||
|
menus: [null]
|
||
|
});
|
||
|
}
|
||
|
|
||
|
totalCount
|
||
|
|
||
|
destroyModal(): void {
|
||
|
this.modal.destroy({ data: 'this the result data' });
|
||
|
}
|
||
|
optionList = [];
|
||
|
isLoading = false;
|
||
|
//获取权限列表
|
||
|
loadMore() {
|
||
|
this.isLoading = true;
|
||
|
this.http.get('/api/services/app/Role/GetAllPermissions').subscribe((data: any) => {
|
||
|
this.isLoading = false;
|
||
|
this.optionList = data.result.items
|
||
|
console.log('所有权限', data)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
}
|