From 663ea2f2eca3b7da3bdaffb13eaac44433adb62f Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 목, 16 12월 2021 13:13:54 +0900 Subject: [PATCH] 기록탭 html 태그 보이는 내용 수정 / 사이드바 사용자 프로필 등급, 부서명 표시 수정 --- src/main/webapp/views/common/sidebar.html | 17 +++++++++++++---- 1 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/main/webapp/views/common/sidebar.html b/src/main/webapp/views/common/sidebar.html index 29c5235..3bccf52 100644 --- a/src/main/webapp/views/common/sidebar.html +++ b/src/main/webapp/views/common/sidebar.html @@ -192,7 +192,10 @@ {{$root.user.name}} </div> </div> - <div class="logged-user-toggler-arrow"> + <div ng-if="$root.myDepartments == null" class="logged-user-toggler-arrow"> + <div class="os-icon os-icon-chevron-down"></div> + </div> + <div ng-if="$root.myDepartments != null" class="logged-user-toggler-arrow_change"> <div class="os-icon os-icon-chevron-down"></div> </div> <div class="logged-user-menu color-style-bright"> @@ -234,6 +237,12 @@ </ul> </div> </div> + <div ng-if="$root.myLevel != null" class="issue-main-label offset-detail-5 mt-1"> + <span>{{$root.myLevel}}</span> + </div> + <div ng-if="$root.myDepartments != null" class="issue-main-label offset-detail-5 mt-1"> + <span>{{$root.myDepartments}}</span> + </div> </div> <ul class="main-menu"> @@ -252,7 +261,7 @@ <span>ISSUE LIST</span> </li> - <li ng-repeat="issueType in $root.workIssueTypes"> + <li ng-repeat="issueType in $root.workIssueTypes" > <a class="cursor" tabindex="-1" ng-click="fn.changeIssueListMenu(issueType.id)"> <div class="icon-w"> <div class="os-icon os-icon-layout"></div> @@ -325,8 +334,8 @@ <span translate="managementType.managementIssueType">�씪媛� �쑀�삎 愿�由�</span></a> </li> - <li class="sub-header" ng-if="$root.checkMngPermissionSettings()"> - <span>LIST MANAGEMENT</span> + <li class="sub-header" ng-if="$root.checkMngPermission('USER_PERMISSION_MNG_PARTNER')"> + <span>PARTNER LIST</span> </li> <li class="" ng-if="$root.checkMngPermission('USER_PERMISSION_MNG_PARTNER')"> <a ui-sref="companyField.list" tabindex="-1"> -- Gitblit v1.8.0