Browse Source

[新增]卸油流程

dev
邵佳豪 3 years ago
parent
commit
005b04e945
  1. 20
      src/app/app.component.html
  2. 36
      src/app/app.component.ts
  3. 19
      src/app/pages/login/login.component.html
  4. 68
      src/app/pages/login/login.component.ts
  5. 4
      src/app/pages/pages.module.ts
  6. 127
      src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.html
  7. 146
      src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.scss
  8. 1
      src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts
  9. BIN
      src/assets/images/down.png
  10. BIN
      src/assets/images/right3.png
  11. 135
      src/assets/js/abp.signalr-client.js
  12. 3741
      src/assets/js/signalr.js
  13. 3
      src/index.html

20
src/app/app.component.html

@ -1,19 +1 @@
<router-outlet></router-outlet>
<!-- <button class="btn" (click)="receiptOfNotification()">点击收到通知 </button> -->
<ng-template>
<div class="topbox">
<div>
<img src="../assets/images/AnXinQQ.jpg" alt="">
</div>
<div class="text">
<span>您有一条新的预警提醒!</span>
<span>这是详细描述这是详细描述这是详细描述...</span>
</div>
</div>
<div class="btnbox">
<button class="look" nz-button type="button">查看</button>
<button class="lose" nz-button type="button">忽略</button>
</div>
</ng-template>
<router-outlet></router-outlet>

36
src/app/app.component.ts

@ -1,13 +1,10 @@
import { Component, TemplateRef, ViewChild } from '@angular/core';
import { HttpClient } from '@angular/common/http'
import { Data } from './interface'
import { Router, ActivatedRoute } from '@angular/router'
import { CacheTokenService } from './service/cache-token.service'//引入服务
import { CookieService } from 'ngx-cookie-service';
import "reflect-metadata";
import { NzNotificationService } from 'ng-zorro-antd/notification';
declare var abp:any
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
@ -30,38 +27,7 @@ export class AppComponent {
// this.token.startUp()
// })
// }
console.log('abp',abp)
}
receiptOfNotification() {
this.notificationService.template(this.template!, { nzPlacement: 'bottomRight', nzClass: 'receiptOfNotification', nzDuration: 0 });
}
messages
abp() {
let _this = this;
//手动实现hub
//this.hubConnection = new signalR.HubConnectionBuilder()
// .withUrl('/signalr-violation',
// {
// accessTokenFactory: ()=>this.token
// }
// )
// .build();
////服务器回调方法
//this.hubConnection.on('SendViolation', (data) => {
// console.log("SendViolation", data);
// _this.messages.push("SendViolation:"+JSON.stringify(data));
//});
//this.hubConnection.start();
//abp封装的hub
abp.event.on('abp.notifications.received', function (userNotification) {
_this.messages.push("abp.notifications.received:" + JSON.stringify(userNotification));
console.log('abp.notifications.received', userNotification);
});
}
}

19
src/app/pages/login/login.component.html

@ -58,4 +58,21 @@
<h1>智能安全管理系统</h1> -->
</div>
</div>
</div>
<ng-template>
<div class="topbox">
<div>
<img src="../assets/images/AnXinQQ.jpg" alt="">
</div>
<div class="text">
<span>您有一条新的预警提醒!</span>
<span>这是详细描述这是详细描述这是详细描述...</span>
</div>
</div>
<div class="btnbox">
<button class="look" nz-button type="button">查看</button>
<button class="lose" nz-button type="button">忽略</button>
</div>
</ng-template>

68
src/app/pages/login/login.component.ts

@ -1,4 +1,4 @@
import { Component, OnInit, AfterViewInit, ViewChild } from '@angular/core';
import { Component, OnInit, AfterViewInit, ViewChild, TemplateRef } from '@angular/core';
import { HttpClient } from '@angular/common/http'
import { Router, ActivatedRoute } from '@angular/router'
import { CacheTokenService } from '../../service/cache-token.service'//引入服务
@ -6,6 +6,9 @@ import { CookieService } from 'ngx-cookie-service';//cookie插件
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { NzMessageService } from 'ng-zorro-antd/message';
import { Base64 } from 'js-base64';
import { NzNotificationService } from 'ng-zorro-antd/notification';
declare var abp: any
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
@ -15,8 +18,8 @@ import { Base64 } from 'js-base64';
export class LoginComponent implements OnInit {
validateForm!: FormGroup;
constructor(private http: HttpClient, private router: Router, private route: ActivatedRoute, public token: CacheTokenService, private cookieService: CookieService, private fb: FormBuilder, private message: NzMessageService) { }
@ViewChild(TemplateRef, { static: false }) template?: TemplateRef<{}>;
constructor(private http: HttpClient, private router: Router, private route: ActivatedRoute, public token: CacheTokenService, private cookieService: CookieService, private fb: FormBuilder, private message: NzMessageService, private notificationService: NzNotificationService) { }
ngOnInit() {
this.validateForm = this.fb.group({
@ -74,6 +77,8 @@ export class LoginComponent implements OnInit {
remember: any//记住密码
autologin: any//自动登录
isLoading = false;
messages
encryptedAccessToken
submitForm(): void {
if (!this.remember) {
@ -102,6 +107,8 @@ export class LoginComponent implements OnInit {
sessionStorage.setItem("token", data.result.accessToken);
this.cookieService.set("token", data.result.accessToken, null, '/');
this.cookieService.set("refreshToken", data.result.encryptedAccessToken, null, '/');
this.encryptedAccessToken = data.result.encryptedAccessToken
console.log('token', data)
this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => {
sessionStorage.setItem('userdata', JSON.stringify(data.result.user))
sessionStorage.setItem('userdataOfgasstation', JSON.stringify(data.result.user))
@ -123,6 +130,58 @@ export class LoginComponent implements OnInit {
}
}
this.message.create('success', `登陆成功`);
function loadScript(url, callback) {
var s: any = document.createElement('script');
s.type = 'text/javascript';
if (s.readyState) {
s.onreadystatechange = function () { //兼容IE
if (s.readyState == 'complete' || s.readyState == 'loaded') {
callback();
}
}
} else {
s.onload = function () { //safari chrome opera firefox
callback();
}
}
s.src = url;
document.head.appendChild(s);
}
let _this = this;
loadScript('./assets/js/abp.signalr-client.js', () => {
abp.signalr = {
autoConnect: true,
connect: undefined,
hubs: undefined,
qs: "enc_auth_token" + "=" + encodeURIComponent(_this.encryptedAccessToken),
remoteServiceBaseUrl: "http://39.106.78.171:8906",
url: '/signalr'
};
//手动实现hub
//this.hubConnection = new signalR.HubConnectionBuilder()
// .withUrl('/signalr-violation',
// {
// accessTokenFactory: ()=>this.token
// }
// )
// .build();
////服务器回调方法
//this.hubConnection.on('SendViolation', (data) => {
// console.log("SendViolation", data);
// _this.messages.push("SendViolation:"+JSON.stringify(data));
//});
//this.hubConnection.start();
//abp封装的hub
abp.event.on('abp.notifications.received', function (userNotification) {
_this.messages.push("abp.notifications.received:" + JSON.stringify(userNotification));
console.log('abp.notifications.received成功收到了哈哈哈', userNotification);
});
})
}, err => {
this.isLoading = false;
})
@ -137,6 +196,9 @@ export class LoginComponent implements OnInit {
)
}
receiptOfNotification() {
this.notificationService.template(this.template!, { nzPlacement: 'bottomRight', nzClass: 'receiptOfNotification', nzDuration: 0 });
}
roleList = [
'管理员', '职工'

4
src/app/pages/pages.module.ts

@ -46,6 +46,7 @@ import { EditequipmentComponent } from './equipment-info/editequipment/editequip
import { NzTreeSelectModule } from 'ng-zorro-antd/tree-select';
import { PlanAdminComponent } from './plan-admin/plan-admin.component';
import { GetOutOfLineDetailsComponent } from './today-warning/get-out-of-line-details/get-out-of-line-details.component';
import { NzNotificationModule } from 'ng-zorro-antd/notification';
@NgModule({
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent,
@ -86,7 +87,8 @@ import { GetOutOfLineDetailsComponent } from './today-warning/get-out-of-line-de
NzTableModule,
NzCheckboxModule,
NzTimePickerModule,
NzProgressModule
NzProgressModule,
NzNotificationModule
],
entryComponents: [AddequipmentComponent, EditequipmentComponent,GetOutOfLineDetailsComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA]

127
src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.html

@ -1,7 +1,7 @@
<!-- <p>get-out-of-line-details works!</p> -->
<div class="box">
<div class="titlebox">
<div class="title">
<div class="title" *ngIf="data.type == 0">
<div (click)="contentType('img')" [ngClass]="{'selected': selectedType == 'img'}">
预警截图
<div class="border"></div>
@ -11,15 +11,15 @@
<div class="border"></div>
</div>
</div>
<!-- <div class="title" *ngIf="data.type != 0">
<div class="title" *ngIf="data.type != 0">
<div (click)="contentType('xieyou')" [ngClass]="{'selected': selectedType == 'img'}">
卸油预警
卸油作业
<div class="border"></div>
</div>
</div> -->
</div>
</div>
<div class="content">
<div *ngIf="selectedType == 'img'" class="imgbox">
<div *ngIf="data.type == 0 && selectedType == 'img'" class="imgbox">
<!-- <div class="imglist">
<span class="imglisttitle">截图列表</span>
<div class="img">
@ -30,101 +30,48 @@
<img [src]="imgUrl" alt="">
</div>
</div>
<div style="width: 100%;height: 100%;" *ngIf="selectedType == 'video'" class="vediobox">
<div style="width: 100%;height: 100%;" *ngIf="data.type == 0 && selectedType == 'video'" class="vediobox">
<video controls style="width: 100%;height: 100%;" [src]="vedioUrl"></video>
</div>
<!-- <div *ngIf="data.type != 0" class="oilbox">
<div class="imgDetailsbox">
<h1>执行错误</h1>
<div class="bigimage">
<img src="../../../../assets/images/bgImg.jpg" alt="">
</div>
<h3>步骤02</h3>
</div>
<div class="flowpathbox">
<div class="name">
卸油流程
</div>
<div class="flowpathlist">
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤1</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/right.png" alt="">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤2</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/right.png" alt="">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤3</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/right.png" alt="">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤4</span>
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤8</span>
<div *ngIf="data.type != 0" class="oilbox">
<div class="leftbox">
<div class="lefttop">
<div class="title">
事前准备
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/left.png" alt="">
<div class="content">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤7</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/left.png" alt="">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤6</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/left.png" alt="">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤5</span>
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤9</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/right.png" alt="">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤10</span>
</div>
<img style="height: 42px;" src="../../../../assets/images/down.png" alt="">
<div class="leftbottom">
<div class="title">
事中操作
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/right.png" alt="">
<div class="content">
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤11</span>
</div>
</div>
<div class="rightbox">
<div class="righttop">
<div class="imgbox">
<div class="img">
<img src="" alt="">
</div>
<span class="name">车辆进场</span>
</div>
<div class="arrowsbox">
<img src="../../../../assets/images/right.png" alt="">
</div>
<img style="height: 42px;" src="../../../../assets/images/down.png" alt="">
<div class="rightbottom">
<div class="title">
卸油过程全程监测
</div>
<div class="flowpathimgbox">
<img src="../../../../assets/images/bgImg.jpg" alt="">
<span>步骤12</span>
<div class="content">
</div>
</div>
<img class="leftimg" src="../../../../assets/images/left2.png" alt="">
<img class="rightimg" src="../../../../assets/images/right2.png" alt="">
</div>
</div> -->
</div>
</div>
</div>

146
src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.scss

@ -4,12 +4,13 @@
color: #fff;
display: flex;
flex-direction: column;
background-image: linear-gradient(#003B6E, #000D21);
}
.titlebox {
width: 100%;
height: 48px;
background: #041d3c;
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%);
display: flex;
align-items: center;
@ -41,7 +42,7 @@
}
.selected {
background: linear-gradient(90deg, #1662a9 0%, #25b7d4 50%, #1662a9 100%);
background: linear-gradient(90deg, rgba(35, 153, 255, 0.57) 0%, #25b7d4 50%, rgba(35, 153, 255, 0.57) 100%);
.border {
background: linear-gradient(90deg, rgba(35, 217, 255, 0) 0%, #25b7d4 50%, rgba(35, 217, 255, 0) 100%);
@ -113,111 +114,80 @@
width: 100%;
height: 100%;
.imgDetailsbox {
width: 280px;
height: 100%;
.title {
width: 100%;
height: 30px;
line-height: 30px;
background: rgba(35, 153, 255, 0.2);
text-align: left;
border-bottom: 1px solid rgba(54, 162, 255, 0.47);
box-sizing: border-box;
padding-right: 12px;
border-right: 1px solid rgba(145, 204, 255, 0.3);
padding-left: 16px;
color: #36A2FF;
}
.leftbox {
display: flex;
flex-direction: column;
// justify-content: center;
justify-content: space-between;
align-items: center;
.lefttop,
.leftbottom {
width: 840px;
height: 280px;
border: 1px solid rgba(54, 162, 255, 0.47);
display: flex;
flex-direction: column;
.bigimage {
width: 264px;
height: 264px;
border: 1px solid #FF4B65;
box-shadow: 0px 0px 12px #FF4B65;
opacity: 1;
border-radius: 0px;
// margin-top: 40px;
margin-bottom: 24px;
img {
width: 100%;
height: 100%;
}
}
h1 {
font-weight: bold;
font-size: 24px;
color: #FF4B65;
margin-bottom: 32px;
margin-top: 36%;
}
h3 {
font-size: 18px;
font-weight: 400;
color: #FFFFFF;
.content {
flex: 1;
background: #001d3c;
}
}
}
.flowpathbox {
.rightbox {
flex: 1;
box-sizing: border-box;
padding-left: 73px;
position: relative;
// border: 1px solid red;
.name {
color: rgba(145, 204, 255, 1);
font-size: 15px;
margin-bottom: 12px;
}
.flowpathlist {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
.rightbottom {
width: 160px;
height: 490px;
display: flex;
flex-wrap: wrap;
.flowpathimgbox {
width: 160px;
height: 200px;
display: flex;
flex-direction: column;
img {
width: 158px;
height: 158px;
border: 1px solid rgba(0, 0, 0, 0);
cursor: pointer;
}
span {
text-align: center;
margin-top: 6px;
}
flex-direction: column;
.content {
flex: 1;
background: #001d3c;
}
}
}
.imgbox {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.arrowsbox {
width: 40px;
height: 200px;
display: flex;
justify-content: center;
img {
width: 38px;
height: 38px;
margin-top: 65px;
}
.img {
width: 96px;
height: 64px;
img {
width: 100%;
height: 100%;
}
}
.leftimg {
display: block;
position: absolute;
left: 20px;
bottom: 76px
.name {
color: #FFFFFF;
font-size: 14px;
}
.rightimg {
display: block;
position: absolute;
right: -3px;
top: 99px;
}
}
}
}

1
src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts

@ -15,6 +15,7 @@ export class GetOutOfLineDetailsComponent implements OnInit {
imgUrl:string
vedioUrl:string
ngOnInit(): void {
this.data.type = 1
this.imgUrl = this.data.violateImage
this.vedioUrl = this.data.violateVideo
}

BIN
src/assets/images/down.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
src/assets/images/right3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

135
src/assets/js/abp.signalr-client.js

@ -0,0 +1,135 @@
var abp = abp || {};
(function () {
// Check if SignalR is defined
if (!signalR) {
return;
}
// Create namespaces
abp.signalr = abp.signalr || {};
abp.signalr.hubs = abp.signalr.hubs || {};
abp.signalr.reconnectTime = abp.signalr.reconnectTime || 5000;
abp.signalr.maxTries = abp.signalr.maxTries || 8;
abp.signalr.increaseReconnectTime = abp.signalr.increaseReconnectTime || function (time) {
return time * 2;
};
// Configure the connection for abp.signalr.hubs.common
function configureConnection(connection) {
// Set the common hub
abp.signalr.hubs.common = connection;
let tries = 1;
let reconnectTime = abp.signalr.reconnectTime;
// Reconnect loop
function tryReconnect() {
if (tries <= abp.signalr.maxTries) {
connection.start()
.then(function () {
reconnectTime = abp.signalr.reconnectTime;
tries = 1;
console.log('Reconnected to SignalR server!');
abp.event.trigger('abp.signalr.reconnected');
}).catch(function () {
tries += 1;
reconnectTime = abp.signalr.increaseReconnectTime(reconnectTime);
setTimeout(function () {
tryReconnect()
},
reconnectTime
);
});
}
}
// Reconnect if hub disconnects
connection.onclose(function (e) {
if (e) {
abp.log.debug('Connection closed with error: ' + e);
} else {
abp.log.debug('Disconnected');
}
if (!abp.signalr.autoReconnect) {
return;
}
abp.event.trigger('abp.signalr.disconnected');
tryReconnect();
});
// Register to get notifications
connection.on('getNotification', function (notification) {
abp.event.trigger('abp.notifications.received', notification);
});
}
// Connect to the server for abp.signalr.hubs.common
function connect() {
var url = abp.signalr.url || (abp.appPath + 'signalr');
// Start the connection
startConnection(url, configureConnection)
.then(function (connection) {
abp.log.debug('Connected to SignalR server!'); //TODO: Remove log
abp.event.trigger('abp.signalr.connected');
// Call the Register method on the hub
connection.invoke('register').then(function () {
abp.log.debug('Registered to the SignalR server!'); //TODO: Remove log
});
})
.catch(function (error) {
abp.log.debug(error.message);
});
}
// Starts a connection with transport fallback - if the connection cannot be started using
// the webSockets transport the function will fallback to the serverSentEvents transport and
// if this does not work it will try longPolling. If the connection cannot be started using
// any of the available transports the function will return a rejected Promise.
function startConnection(url, configureConnection) {
if (abp.signalr.remoteServiceBaseUrl) {
url = abp.signalr.remoteServiceBaseUrl + url;
}
// Add query string: https://github.com/aspnet/SignalR/issues/680
if (abp.signalr.qs) {
url += (url.indexOf('?') == -1 ? '?' : '&') + abp.signalr.qs;
}
return function start(transport) {
abp.log.debug('Starting connection using ' + signalR.HttpTransportType[transport] + ' transport');
var connection = new signalR.HubConnectionBuilder()
.withUrl(url, transport)
.build();
if (configureConnection && typeof configureConnection === 'function') {
configureConnection(connection);
}
return connection.start()
.then(function () {
return connection;
})
.catch(function (error) {
abp.log.debug('Cannot start the connection using ' + signalR.HttpTransportType[transport] + ' transport. ' + error.message);
if (transport !== signalR.HttpTransportType.LongPolling) {
return start(transport + 1);
}
return Promise.reject(error);
});
}(signalR.HttpTransportType.WebSockets);
}
abp.signalr.autoConnect = abp.signalr.autoConnect === undefined ? true : abp.signalr.autoConnect;
abp.signalr.autoReconnect = abp.signalr.autoReconnect === undefined ? true : abp.signalr.autoReconnect;
abp.signalr.connect = abp.signalr.connect || connect;
abp.signalr.startConnection = abp.signalr.startConnection || startConnection;
if (abp.signalr.autoConnect && !abp.signalr.hubs.common) {
abp.signalr.connect();
}
})();

3741
src/assets/js/signalr.js

File diff suppressed because it is too large Load Diff

3
src/index.html

@ -10,5 +10,8 @@
<body>
<app-root></app-root>
</body>
<script src="./assets/js/signalr.js"></script>
<script src="./assets/js/abp.js"></script>
<!-- <script src="./assets/js/abp.signalr-client.js"></script> -->
<!-- <script src="../../Sinopec-Anxin/node_modules/angular-load/angular-load.js"></script> -->
</html>

Loading…
Cancel
Save