main.component.html 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <nz-layout class="app-layout display_flex flex_auto ant-layout-has-sider">
  2. <overlay-scrollbars #osComponentRef1 class="menu-sidebar">
  3. <div class="sidebar-logo display_flex align-items_center justify-content_flex-center">
  4. <div style="line-height: normal;height:100%;" class="display_flex align-items_center justify-content_flex-center flex-direction_column">
  5. <img [src]="tool.logoUrl">
  6. <span>{{tool.logoTitle}}</span>
  7. </div>
  8. </div>
  9. <!-- 导航重写,兼容chrome39 -->
  10. <ul id="ds-menu">
  11. <li class="mainMenuOne" (click)="totoMenu('首页')" [ngClass]="{mainMenuSelected:indexFlag}">
  12. <i nz-icon nzType="home"></i>
  13. <span>首页</span>
  14. </li>
  15. <li *ngFor="let data of menus" class="mainMenuWrap">
  16. <div class="mainMenuOne" (click)="clickMenuOne(data)" [ngClass]="{mainMenuSelected:data.flagBg}">
  17. <i nz-icon [nzType]="data.icon"></i>
  18. <span>{{data.title}}</span>
  19. <span class="icon_transport transport-xialajiantou"
  20. [ngStyle]="{transform:data.flag?'rotate(180deg)':'rotate(0deg)',color:data.flag?'#fff':'#999'}"></span>
  21. </div>
  22. <ul>
  23. <li *ngFor="let item of data.childrens" class="mainMenu" (click)="totoMenu(item.title,item,data)"
  24. [ngStyle]="{height:data.flag?'44px':0}" [ngClass]="{menuTwoSelected:item.flag}">
  25. {{item.title}}
  26. </li>
  27. </ul>
  28. </li>
  29. </ul>
  30. </overlay-scrollbars>
  31. <nz-layout style="background:#fff;display: flex;flex-direction: column;position: relative;">
  32. <nz-header>
  33. <div class="app-header display_flex justify-content_space-between align-items_center">
  34. <div class="left">
  35. <button nz-button nzType="primary" *ngIf='deskRole' (click)="toFuwutai()">调度台</button>
  36. <button nz-button nzType="primary" *ngIf="nurseRole" (click)="toHuShi()">护士端</button>
  37. <button nz-button nzType="primary" *ngIf="pharmacyRole" (click)="toPharmacy()">药房端</button>
  38. <button nz-button nzType="primary" *ngIf="pharmacyRole" (click)="toPharmacy2()">药房端2</button>
  39. <button nz-button nzType="primary" *ngIf="largeScreenRole" (click)="toBigScreen('largeScreen')">大屏端</button>
  40. <button nz-button nzType="primary" *ngIf="largeScreenRole2"
  41. (click)="toBigScreen('largeScreen2')">大屏端2</button>
  42. <button nz-button nzType="primary" *ngIf="specimenViewRole" (click)="toBigScreen('specimenView')"
  43. [nzLoading]="deptTypeLoading">业务视图</button>
  44. <button nz-button nzType="primary" *ngIf="specimenViewRole2" (click)="toSpecimenView2()">标本视图</button>
  45. <button nz-button nzType="primary" *ngIf="disinfectionSupplyRole" (click)="toDisinfectionSupply()">全局业务查看</button>
  46. </div>
  47. <div class="right">
  48. <div class="msg">
  49. <div class="msgBtn display_flex align-items_center justify-content_flex-center" nz-popover
  50. [nzPopoverContent]="contentTemplate" nzPopoverPlacement="bottomRight">
  51. <i nz-icon nzType="bell" nzTheme="outline"></i>
  52. </div>
  53. <ng-template #contentTemplate>
  54. <div>
  55. <p>消息通知</p>
  56. </div>
  57. </ng-template>
  58. </div>
  59. <div class="userInfo">
  60. <div class="wel">欢迎您,{{currentHospital.hosName}}:</div>
  61. <div class="user"><img src="../../assets/images/icon_keshi.png"
  62. alt="">{{(userInfo&&userInfo.user)?userInfo.user.name:''}}</div>
  63. <div class="logOut">
  64. <span (click)="hosFlag1 = true">选择院区</span>
  65. <span (click)="showUpPwd()">修改密码</span>
  66. <span (click)="logOut()">退出</span>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. </nz-header>
  72. <nz-content style="position: relative;">
  73. <div class="inner-content">
  74. <router-outlet></router-outlet>
  75. </div>
  76. </nz-content>
  77. </nz-layout>
  78. </nz-layout>
  79. <!-- 消息弹框模板 -->
  80. <ng-template #msgTemplate1 let-msg="data">
  81. <div class="msgTemBox ant-notification-notice-content">
  82. <div class="borderLeft"></div>
  83. <div class="ant-notification-notice-with-icon">
  84. <span class="ant-notification-notice-icon">
  85. <i class="icon icon_transport transport-shouye9"></i>
  86. </span>
  87. <div class="ant-notification-notice-message">{{msg.type==1?'通知':'消息'}}</div>
  88. <div class="ant-notification-notice-description">{{msg.content}}</div>
  89. </div>
  90. </div>
  91. </ng-template>
  92. <!-- 修改密码 -->
  93. <nz-modal [(nzVisible)]="isPwdVisible" nzTitle="修改密码" (nzOnCancel)="pwdHandleCancel()" (nzOnOk)="pwdHandleOk()"
  94. [nzOkLoading]="pwdIsOkLoading" (nzAfterOpen)="pwdAfterOpen()">
  95. <div>
  96. <label>原始密码:
  97. <nz-input-group [nzSuffix]="suffixTemplate">
  98. <input minlength="9" [type]="passwordVisible ? 'text' : 'password'" nz-input placeholder="原始密码"
  99. [(ngModel)]="upModalData.pwdOld" />
  100. </nz-input-group>
  101. <ng-template #suffixTemplate>
  102. <i nz-icon [nzType]="passwordVisible ? 'eye-invisible' : 'eye'"
  103. (click)="passwordVisible = !passwordVisible"></i>
  104. </ng-template>
  105. </label>
  106. <label>新密码:
  107. <div style="display: flex;">
  108. <nz-input-group [nzSuffix]="suffixTemplate">
  109. <input minlength="9" [type]="passwordVisible ? 'text' : 'password'" nz-input placeholder="新密码"
  110. [(ngModel)]="upModalData.newPwd" (ngModelChange)="blurNewPwd()" />
  111. </nz-input-group>
  112. <ng-template #suffixTemplate>
  113. <i nz-icon [nzType]="passwordVisible ? 'eye-invisible' : 'eye'" (click)="passwordVisible = !passwordVisible"></i>
  114. </ng-template>
  115. <div class="red" style="display: flex;justify-content: center;align-items: center;padding-left: 5px;" *ngIf="enoughRegFlag">弱</div>
  116. <div style="display: flex;justify-content: center;align-items: center;padding-left: 5px;" *ngIf="mediumRegFlag">中</div>
  117. <div class="green" style="display: flex;justify-content: center;align-items: center;padding-left: 5px;" *ngIf="strongRegFlag">强</div>
  118. </div>
  119. </label>
  120. <div class="red">强密码需包含大小写字母、数字、特殊字符,长度至少9个字符</div>
  121. <label>确认新密码:
  122. <nz-input-group [nzSuffix]="suffixTemplate">
  123. <input minlength="9" [type]="passwordVisible ? 'text' : 'password'" nz-input placeholder="确认新密码"
  124. [(ngModel)]="upModalData.newPwd2" />
  125. </nz-input-group>
  126. <ng-template #suffixTemplate>
  127. <i nz-icon [nzType]="passwordVisible ? 'eye-invisible' : 'eye'"
  128. (click)="passwordVisible = !passwordVisible"></i>
  129. </ng-template>
  130. </label>
  131. </div>
  132. </nz-modal>
  133. <!-- 大屏或视图选择院区模态框 -->
  134. <app-select-hospital (hosFlagHand)="hosFlagHand($event)" (submitFormHand)="submitFormHand($event)" [hosFlag]="hosFlag">
  135. </app-select-hospital>
  136. <!-- 切换院区 -->
  137. <app-select-hospital (hosFlagHand)="hosFlagHand1($event)" (submitFormHand)="submitFormHand1($event)"
  138. [hosFlag]="hosFlag1">
  139. </app-select-hospital>
  140. <!-- 模态框 -->
  141. <div class="save display_flex justify-content_flex-center align-items_center" *ngIf="delModal">
  142. <div class="modalBody">
  143. <div class="title">提示<i class="icon_transport transport-guanbi" (click)="hideDelModal()"></i></div>
  144. <div class="content">
  145. <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
  146. <div class="defeat">{{tipsMsg1}}</div>
  147. </div>
  148. <div class="display_flex justify-content_flex-center">
  149. <button nz-button nzType="primary" (click)="confirmDel()">确认</button>
  150. <button class="btn cancel " nz-button nzType="default" (click)="hideDelModal()">关闭</button>
  151. </div>
  152. </div>
  153. </div>
  154. <!-- 遮罩 -->
  155. <app-mask *ngIf="maskFlag"></app-mask>