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); + } + } +}