Compare commits

..

No commits in common. '17d89011873a567bb709441044d1f0225cebffcf' and '5906724ed460b056b004fb411a1802b17996cf89' have entirely different histories.

  1. 18
      src/app/system-management/user/user.component.ts

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

@ -1,6 +1,5 @@
import { Component, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree';
import { NzModalService } from 'ng-zorro-antd/modal';
import { AdduserComponent } from './adduser/adduser.component';
import { NzMessageService } from 'ng-zorro-antd/message';
@ -25,22 +24,18 @@ export class UserComponent implements OnInit {
this.getAllRoles()
this.getAllOrganization()
}
nzSelectedKeys: any[] = []
defaultExpandedKeys = [];
searchValue = '';
nzExpandAll = false;
totalCount: string
//获取所有用户
usersLIst: any = []
usersNum: string
OrganizaiotnId
getAllUsers() {
let params = {
Keyword: this.validateForm.value.search ? this.validateForm.value.search : '',
SkipCount: String(this.SkipCount),
MaxResultCount: String(this.MaxResultCount),
OrganizaiotnId:this.OrganizaiotnId
MaxResultCount: String(this.MaxResultCount)
}
this.http.get('/api/services/app/User/GetAll', {
params: params
@ -104,10 +99,7 @@ export class UserComponent implements OnInit {
}
this.getAllUsers()
}
nzClick(event: NzFormatEmitEvent){
console.log(event);
}
//新增用户
addUser(): void {
const modal = this.modal.create({

Loading…
Cancel
Save