Browse Source

[新增]右上角预警声音和弹窗 开关

beijing
邵佳豪 2 years ago
parent
commit
6b56b0ec5c
  1. 25
      src/app/pages/home/home.component.html
  2. 15
      src/app/pages/home/home.component.scss
  3. 965
      src/app/pages/home/home.component.ts
  4. 5
      src/theme.less

25
src/app/pages/home/home.component.html

@ -1,7 +1,4 @@
<div class="box">
<!-- <div>
<app-tabbar></app-tabbar>
</div> -->
<div class="menu">
<div class="boxleft">
<img *ngIf="isProd" src="../../../assets/images/logo2.png" alt="">
@ -28,6 +25,27 @@
<!-- 登录信息按钮 -->
<div class="boxright">
<i (click)="warningSwitch('voice')" nz-icon [ngClass]="{'grey': !isWarningVoice}" class="blue"
style="margin-top: 2px;" nz-tooltip nzTooltipTitle="预警声音开关" nzTooltipPlacement="bottom">
<svg width="20" height="20">
<path
d="M260.256 356.576l204.288-163.968a32 32 0 0 1 52.032 24.96v610.432a32 32 0 0 1-51.968 24.992l-209.92-167.552H96a32 32 0 0 1-32-32v-264.864a32 32 0 0 1 32-32h164.256zM670.784 720.128a32 32 0 0 1-44.832-45.664 214.08 214.08 0 0 0 64.32-153.312 213.92 213.92 0 0 0-55.776-144.448 32 32 0 1 1 47.36-43.04 277.92 277.92 0 0 1 72.416 187.488 278.08 278.08 0 0 1-83.488 198.976zM822.912 858.88a32 32 0 1 1-45.888-44.608A419.008 419.008 0 0 0 896 521.152c0-108.704-41.376-210.848-114.432-288.384a32 32 0 0 1 46.592-43.872c84.16 89.28 131.84 207.04 131.84 332.256 0 127.84-49.76 247.904-137.088 337.728z">
</path>
</svg>
</i>
<i (click)="warningSwitch('window')" nz-icon [ngClass]="{'grey': !isWarningWindow}" class="blue"
style="margin: 0 8px;" nz-tooltip nzTooltipTitle="预警弹窗开关" nzTooltipPlacement="bottom">
<svg width="18" height="18">
<path
d="M460.8 0h102.4v102.4H460.8zM113.8688 186.368l72.3968-72.3968L258.6624 186.368 186.2656 258.7648zM0 460.8h102.4v102.4H0zM921.6 460.8h102.4v102.4h-102.4zM765.3376 186.6752l72.3968-72.448 72.3968 72.448-72.3968 72.3968z">
</path>
<path
d="M870.4 512a358.4 358.4 0 0 0-716.8 0v409.6H0v102.4h1024v-102.4h-153.6zM460.8 307.2h102.4v358.4H460.8z m0 460.8h102.4v102.4H460.8z">
</path>
</svg>
</i>
<img *ngIf="!isfullscreen" (click)="fullscreenToggle()" style="margin-right: 8px;cursor: pointer;"
src="../../../assets/images/fullscreen.png" alt="" title="全屏">
<img *ngIf="isfullscreen" (click)="closefullscreen()" style="margin-right: 8px;cursor: pointer;"
@ -48,7 +66,6 @@
<li *ngIf="isGasStation" nz-menu-item (click)="navChange('/oliStationInfo')">基本信息</li>
<li *ngIf="isGasStation" nz-menu-item (click)="navChange('/equipmentInfo')">器材信息</li>
<li nz-menu-item (click)="changePassword()">修改密码</li>
<!-- <li *ngIf="userName == 'admin'" nz-menu-item (click)="navChange('/system/organization')">系统管理</li> -->
<li *ngIf="xitongguanli" nz-menu-item (click)="navChange2()">系统管理</li>
<li nz-menu-item (click)="signOut()">退出系统</li>
</ul>

15
src/app/pages/home/home.component.scss

@ -1,3 +1,13 @@
.blue {
color: #36A2FF;
cursor: pointer;
}
.grey {
color: #FFFFFF;
opacity: 0.6;
}
.box {
width: 100%;
height: 100%;
@ -138,14 +148,16 @@
}
}
}
.boxleft {
left:30px;
left: 30px;
top: 12px;
img {
width: 125px;
}
}
.boxright {
right: 24px;
top: 13px;
@ -160,6 +172,7 @@
height: 26px;
}
}
.backbtn {
left: 176px;
bottom: 3px;

965
src/app/pages/home/home.component.ts

File diff suppressed because it is too large Load Diff

5
src/theme.less

@ -10,6 +10,7 @@
cursor: not-allowed;
}
.yellowColor {
color: #FFBD4B !important;
}
@ -34,10 +35,6 @@
color: #FF4B65;
}
.blueColor {
color: #2399FF;
}
//分页器
#recordsboxadmin,
#recordsbox,

Loading…
Cancel
Save