From 2bdcf05d4d367e7bfe2ff2e4c861be509a3d4e95 Mon Sep 17 00:00:00 2001 From: zhaoyu Date: Tue, 5 Dec 2023 10:20:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BB=A5=E5=8F=8A=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonManager/corpFgs/components/list.vue | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/src/views/PersonManager/corpFgs/components/list.vue b/src/views/PersonManager/corpFgs/components/list.vue index 494b250..280aa7c 100644 --- a/src/views/PersonManager/corpFgs/components/list.vue +++ b/src/views/PersonManager/corpFgs/components/list.vue @@ -6,7 +6,7 @@ - + @@ -23,6 +23,11 @@ +
+ + 本企业共有员工:{{ userNum }}人 + +
@@ -115,6 +120,7 @@ export default { }, PARENTID: '0', fgsList: [], + userNum: '', datePage: 0, USER_ID: '', LOGIN_USER: JSON.parse(sessionStorage.getItem('user')).USER_ID @@ -148,6 +154,7 @@ export default { this.listLoading = false this.varList = data.varList this.fgsList = data.fgsList + this.userNum = data.userNum console.log(this.varList) this.total = data.page.totalResult }).catch((e) => { @@ -320,6 +327,27 @@ export default { display: block; } +.app-statistical { + padding: 8px 20px 8px 20px; + border: 1px solid #abdcff; + background-color: #f0faff; + position: relative; + border-radius: 4px; + color: #515a6e; + line-height: 16px; + margin-bottom: 15px; + + span { + margin-right: 20px; + font-size: 12px; + + i { + font-style: normal; + font-weight: 700; + color: rgb(45, 140, 240); + } + } +}