From 6489ac5ba0b323bd72dc031b2ac71be5b2790e4c Mon Sep 17 00:00:00 2001
From: SHAOJIAHAO <55341701@qq.com>
Date: Wed, 6 Jul 2022 08:55:29 +0800
Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E7=94=A8=E6=88=B7=E6=A0=91?=
=?UTF-8?q?=E6=98=BE=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../user/user.component.html | 14 ++++-----
.../user/user.component.scss | 5 ++--
.../system-management/user/user.component.ts | 30 ++++++++-----------
3 files changed, 20 insertions(+), 29 deletions(-)
diff --git a/src/app/system-management/user/user.component.html b/src/app/system-management/user/user.component.html
index ec649b1..63fa3f3 100644
--- a/src/app/system-management/user/user.component.html
+++ b/src/app/system-management/user/user.component.html
@@ -8,10 +8,10 @@
-
+
-
+
组织机构
@@ -19,21 +19,19 @@
+ [nzHideUnMatched]="true" [nzTreeTemplate]="nzTreeTemplate">
- {{ node.title }}
- 名
+ {{ node.title }}
+ ({{node.origin.products.usersCount}}名)
-
-
+
diff --git a/src/app/system-management/user/user.component.scss b/src/app/system-management/user/user.component.scss
index 995330d..f1ff1ce 100644
--- a/src/app/system-management/user/user.component.scss
+++ b/src/app/system-management/user/user.component.scss
@@ -75,12 +75,11 @@
flex: 1;
width: 100px;
margin-left: 55px;
- // height: 55px;
- // line-height: 55px;
}
}
.nodebox {
- font-size: 15px;
+ display: flex;
+ justify-content: space-between;
}
tbody {
tr {
diff --git a/src/app/system-management/user/user.component.ts b/src/app/system-management/user/user.component.ts
index 1a38119..30e3245 100644
--- a/src/app/system-management/user/user.component.ts
+++ b/src/app/system-management/user/user.component.ts
@@ -42,7 +42,7 @@ export class UserComponent implements OnInit {
}
nzSelectedKeys: any[] = []
defaultExpandedKeys = [];
- IsContainsChildren=true
+ IsContainsChildren = true
searchValue = '';
totalCount: string
//获取所有用户
@@ -50,7 +50,7 @@ export class UserComponent implements OnInit {
usersNum: string
OrganizationUnitId
loading: boolean;
- organizationsList=[]
+ organizationsList = []
getAllUsers() {
this.loading = true
let params = {
@@ -105,8 +105,7 @@ export class UserComponent implements OnInit {
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe(async (data: any) => {
- console.log(data,80801);
- await this.getuser(data.result.items)
+ await this.getuser(data.result.items)
resolve(data)
this.getAllUsers()
})
@@ -121,36 +120,31 @@ export class UserComponent implements OnInit {
params: params
}).subscribe((data: any) => {
resolve(data)
- console.log(data,70);
-
this.organizationsList = data.result
-
const arrs = e.map(item => {
const data = this.organizationsList.find(i => item.id == i.organizationId)
return {
...item,
- // ...data,
products: data ? data : false
}
})
-
+
for (let index = 0; index < arrs.length; index++) {
- if(arrs[index].products){
- arrs[index].title=arrs[index].displayName
- }else{
- arrs[index].title=arrs[index].displayName
- }
+ arrs[index].title = arrs[index].displayName
+ arrs[index].key = arrs[index].id
}
-
+
this.nodes = [...this.toTree.toTree(arrs)]
this.defaultExpandedKeys = [this.nodes[0].id]
this.nzSelectedKeys = [this.nodes[0].id]
this.OrganizationUnitId = [this.nodes[0].id]
- console.log(this.nodes,9000);
+ console.log(this.nodes, 9000);
})
})
}
-
+ xxx(node){
+ console.log(node)
+ }
//搜索框提交
submitForm(): void {
for (const i in this.validateForm.controls) {
@@ -302,7 +296,7 @@ export class UserComponent implements OnInit {
let url
if (this.level == 1) {
type ? url = '/api/services/app/User/Activate' : url = '/api/services/app/User/DeActivate'
-
+
} else {
type ? url = '/api/services/app/EdittingUser/Activate' : url = '/api/services/app/EdittingUser/DeActivate'
}