seimin il y a 7 mois
Parent
commit
c99c40779f

+ 2 - 2
src/app/components/incidentManagement/incident-handle/incident-handle.component.html

@@ -13,9 +13,9 @@
13 13
           <app-incident-handle-info [incidentData]="incidentData" (changeCategoryHs)="changeCategoryHs($event)" *ngIf="itsmSimpleHandle.value == 0"></app-incident-handle-info>
14 14
           <app-incident-handle-info-simple [incidentData]="incidentData" *ngIf="itsmSimpleHandle.value == 1"></app-incident-handle-info-simple>
15 15
         </div>
16
-        <ng-container [hidden]="activeTabValue !== 2">
16
+        <div [hidden]="activeTabValue !== 2">
17 17
           <app-incident-handle-order [id]="id"></app-incident-handle-order>
18
-        </ng-container>
18
+        </div>
19 19
       </overlay-scrollbars>
20 20
       <overlay-scrollbars #osComponentRef3 class="knowage">
21 21
         <div [hidden]="knowageLoading" class="knowageItem" *ngFor="let item of knowageList">

+ 0 - 4
src/app/services/tool.service.ts

@@ -51,10 +51,6 @@ export class ToolService {
51 51
       ? JSON.parse(localStorage.getItem("user")).user.currentHospital
52 52
       : JSON.parse(localStorage.getItem("user")).infoPermission.hospitals[0];
53 53
   }
54
-	//获取当前用户id
55
-	getCurrentUserId() {
56
-	  return JSON.parse(localStorage.getItem("user")).user.id;
57
-	}
58 54
 	//获取当前用户信息
59 55
 	getCurrentUserInfo() {
60 56
 	  return JSON.parse(localStorage.getItem("user")).user;