Compare commits

..

3 Commits

  1. 2
      package.json
  2. 2
      src/app/app.component.ts
  3. 3
      src/app/app.module.ts
  4. 71
      src/app/http-interceptors/base-interceptor.ts
  5. 2
      src/app/pipe/cameraTypePipe.ts
  6. 114
      src/app/service/objectsSimple.service.ts
  7. 1
      src/app/system-management/analysis-of-the-host/addhost/addhost.component.html
  8. 17
      src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html
  9. 14
      src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss
  10. 19
      src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts
  11. 1
      src/app/system-management/analysis-of-the-host/edithost/edithost.component.html
  12. 12
      src/app/system-management/analysis-of-the-host/worker-tag/worker-tag.component.html
  13. 67
      src/app/system-management/analysis-of-the-host/worker-tag/worker-tag.component.ts
  14. 12
      src/app/system-management/condition-monitoring/condition-monitoring.component.html
  15. 338
      src/app/system-management/condition-monitoring/condition-monitoring.component.ts
  16. 10
      src/app/system-management/host-config/addcamera/addcamera.component.html
  17. 1
      src/app/system-management/host-config/addcamera/addcamera.component.ts
  18. 10
      src/app/system-management/host-config/editcamera/editcamera.component.html
  19. 21
      src/app/system-management/host-config/editcamera/editcamera.component.ts
  20. 6
      src/app/system-management/host-config/host-config.component.html
  21. 224
      src/app/system-management/host-config/host-config.component.ts
  22. 82
      src/app/system-management/host-config/simulate-data/simulate-data.component.html
  23. 16
      src/app/system-management/host-config/simulate-data/simulate-data.component.scss
  24. 25
      src/app/system-management/host-config/simulate-data/simulate-data.component.spec.ts
  25. 327
      src/app/system-management/host-config/simulate-data/simulate-data.component.ts
  26. 12
      src/app/system-management/image-label-anxin/image-label-anxin.component.html
  27. 92
      src/app/system-management/image-label-anxin/image-label-anxin.component.ts
  28. 4
      src/app/system-management/organization/change-or/change-or.component.html
  29. 4
      src/app/system-management/organization/change-or/change-or.component.scss
  30. 25
      src/app/system-management/organization/change-or/change-or.component.spec.ts
  31. 55
      src/app/system-management/organization/change-or/change-or.component.ts
  32. 1
      src/app/system-management/organization/organization.component.html
  33. 46
      src/app/system-management/organization/organization.component.ts
  34. 6
      src/app/system-management/system-management.module.ts

2
package.json

@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.config.json --open --port 1234",
"start": "ng serve --proxy-config proxy.config.json --open --port 1234 ",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"

2
src/app/app.component.ts

@ -13,6 +13,6 @@ export class AppComponent {
//调用服务中的function刷新token
this.token.startUp()
}
console.log('更新日期:20241213')
console.log('更新日期:20230814')
}
}

3
src/app/app.module.ts

@ -14,9 +14,6 @@ import { TreeService } from './service/tree.service';
import { RouteReuseStrategy } from '@angular/router';
import { CustomReuseStrategy } from './CustomReuseStrategy';
import { ConfigFormDataService } from './service/configFormData.service';
import { registerLocaleData } from '@angular/common';
import zh from '@angular/common/locales/zh';
registerLocaleData(zh);
@NgModule({
declarations: [AppComponent],
imports: [

71
src/app/http-interceptors/base-interceptor.ts

@ -1,28 +1,23 @@
import { Injectable } from '@angular/core';
import {
HttpClient,
HttpInterceptor,
HttpHandler,
HttpRequest,
HttpErrorResponse,
HttpClient, HttpInterceptor, HttpHandler, HttpRequest,
HttpErrorResponse
} from '@angular/common/http';
import { throwError } from 'rxjs';
import { throwError } from 'rxjs'
import { catchError } from 'rxjs/operators';
import { Router } from '@angular/router';
import { CacheTokenService } from '../service/cache-token.service';
import { Router } from '@angular/router'
import { CacheTokenService } from '../service/cache-token.service'
import { NzMessageService } from 'ng-zorro-antd/message';
//baseurl
// const baseurl = 'http://39.106.78.171:8008';
@Injectable()
export class BaseInterceptor implements HttpInterceptor {
constructor(
private router: Router,
public token: CacheTokenService,
private message: NzMessageService
) {}
constructor(private router: Router, public token: CacheTokenService, private message: NzMessageService) { }
intercept(req: any, next: HttpHandler) {
let params = req.params;
for (const key of req.params.keys()) {
if (params.get(key) === undefined || params.get(key) === null) {
@ -37,47 +32,45 @@ export class BaseInterceptor implements HttpInterceptor {
});
if (!req.cancelToken) {
/*获取token*/
let token = sessionStorage.getItem('token');
if (req.url == '/api/Data/ViolationRecordPush') {
token =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhbnhpbiIsIm5hbWUiOiLlronkv6EiLCJyb2xlIjoiUHJvZmlsZSIsIm5iZiI6MTY4NTQzNjIzNCwiZXhwIjoyMDAwNzk2MjM0LCJpc3MiOiJhbnhpbjk5LmNvbSIsImF1ZCI6IkVDTElFTlQifQ.obkc9epvwk2Xain4hqL9OrsRtBrAJ2C690CA1OJIqAo';
}
let token = sessionStorage.getItem('token')
/*此处设置额外请求头,token令牌*/
newReq.headers = newReq.headers.set('Authorization', `Bearer ${token}`);
newReq.headers =
newReq.headers.set('Authorization', `Bearer ${token}`)
}
// 携带请求头发送下一次请求
return next.handle(newReq).pipe(
//箭头函数,注意this指向
catchError((err) => this.handleError(err))
);
return next.handle(newReq)
.pipe(
//箭头函数,注意this指向
catchError((err) => this.handleError(err))
)
}
// 捕获错误
// 捕获错误
//401 token过期 403没权限!!! 400参数错误 404未找到 614刷新令牌过期!!!
private handleError(error: HttpErrorResponse) {
console.log('http错误', error);
console.log('http错误', error)
// 用户认证失败返回登录页
if (error.status === 401) {
this.token.delete();
sessionStorage.clear();
localStorage.removeItem('isautologin');
this.token.delete()
sessionStorage.clear()
localStorage.removeItem("isautologin")
this.message.create('error', `用户认证信息过期,请重新登录!`);
this.router.navigate(['/login']);
return;
this.router.navigate(['/login'])
return
}
if (error.status === 403) {
this.message.create('error', `对不起,您无此权限!`);
return;
return
}
if (error.status === 400) {
this.message.create('error', error.error);
return;
return
}
if (error.status === 503) {
this.message.create('error', error.error.detail);
return;
this.message.create('error', error.error.detail);
return
}
if (error.error instanceof ErrorEvent) {
// 发生客户端或网络错误。相应处理。
@ -85,12 +78,14 @@ export class BaseInterceptor implements HttpInterceptor {
} else {
// 服务端返回http状态码
// 服务端返回错误信息
console.error(`状态码${error.status}, ` + `错误内容:${error.error}`);
this.message.create('error', error.error);
console.error(
`状态码${error.status}, ` +
`错误内容:${error.error}`);
this.message.create('error', error.error);
}
// 返回带有面向用户的错误信息
return throwError(() => {
new Error('error');
new Error('error')
});
}
};
}

2
src/app/pipe/cameraTypePipe.ts

@ -11,7 +11,7 @@ import { Pipe, PipeTransform } from '@angular/core';
@Pipe({ name: 'cameraType' })
export class cameraType implements PipeTransform {
transform(value: number): string {
let arr = ['进出口', '加油区', '卸油区', '便利店']
let arr = ['进出口', '加油区', '卸油区', '便利店','办公区']
return arr[value]
}
}

114
src/app/service/objectsSimple.service.ts

@ -1,114 +0,0 @@
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
@Injectable({
providedIn: 'root',
})
export class ObjectsSimpleService {
static readonly c_apiRoot = '/api/'; //普通上传的API根路径
static readonly c_apiRoot_Multipart = '/api/'; //分块上传的API根路径
constructor(private http: HttpClient) {}
static getBucketName() {
let bucket = '/test/';
return bucket;
}
//普通上传,单个文件上限5M
static baseUrl =
ObjectsSimpleService.c_apiRoot +
'Objects' +
ObjectsSimpleService.getBucketName();
postFile(extensionPath: string, file: File): Observable<Object> {
let formData = new FormData();
formData.append('file', file, file.name);
let data = { keepOriginalName: 'true' };
return this.http.post(
ObjectsSimpleService.baseUrl + extensionPath,
formData,
{ params: data }
);
}
//分块上传
static baseUrl_MultipartUpload =
ObjectsSimpleService.c_apiRoot_Multipart +
'NewMultipartUpload' +
ObjectsSimpleService.getBucketName();
postFile_MultipartUpload(extensionPath: string, file: File): Promise<Object> {
// let formData = new FormData()
// formData.append("file", file, file.name)
// return this.http.post(ObjectsSimpleService.baseUrl + extensionPath, formData);
let data = { keepOriginalName: 'true', filename: file.name };
return new Promise((resolve, reject) => {
this.http
.post(
ObjectsSimpleService.baseUrl_MultipartUpload + extensionPath,
{},
{ params: data }
)
.subscribe(async (data: any) => {
//初始化分段上传
let objectName = data.objectName;
let uploadId = data.uploadId;
let PartNumberETag = []; //每次返回需要保存的信息
//分块 处理
let fileSize = file.size || null; //上传文件的总大小
let shardSize = 5 * 1024 * 1024; //5MB一个分片
let allSlice = Math.ceil(fileSize / shardSize); //总文件/5MB===共分多少段
console.log('共分多少段' + allSlice);
for (let i = 0; i < allSlice; i++) {
//循环分段上传
let start = i * shardSize; //切割文件开始位置
let end = Math.min(fileSize, start + shardSize); //切割文件结束位置
let formData = new FormData();
formData.append('file', file.slice(start, end));
//同步写法实现异步调用
let result = await new Promise((resolve, reject) => {
// await 需要后面返回一个 promise 对象
this.http
.post(
ObjectsSimpleService.c_apiRoot_Multipart +
`MultipartUpload` +
+ObjectsSimpleService.getBucketName() +
`${objectName}?uploadId=${uploadId}&partNumber=${i + 1}`,
formData
)
.subscribe((data: any) => {
let msg = {
partNumber: data.partNumber || null,
eTag: data.eTag || null,
};
resolve(msg); // 调用 promise 内置方法处理成功
});
});
PartNumberETag.push(result);
if (PartNumberETag.length === allSlice) {
//分块上传完成
let data = PartNumberETag;
let paramsData = { uploadId: uploadId };
let path =
ObjectsSimpleService.c_apiRoot_Multipart +
'CompleteMultipartUpload' +
ObjectsSimpleService.getBucketName() +
objectName;
this.http
.post(path, data, { params: paramsData })
.subscribe((data) => {
let objData: any = new Object();
objData.fileName = file.name;
objData.filePath = ObjectsSimpleService.baseUrl + objectName;
resolve(objData);
});
}
} //for循环
//分块 处理
});
});
}
}

1
src/app/system-management/analysis-of-the-host/addhost/addhost.component.html

@ -15,6 +15,7 @@
<nz-option [nzValue]="0" nzLabel="警旗1"></nz-option>
<nz-option [nzValue]="1" nzLabel="警旗2"></nz-option>
<nz-option [nzValue]="2" nzLabel="警旗3"></nz-option>
<nz-option [nzValue]="3" nzLabel="北京展厅"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>

17
src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html

@ -12,11 +12,9 @@
</div>
<div class="treeTitle">
<span>组织机构</span>
<a (click)="workerTag()">批量更新workerTag字段</a>
</div>
<div class="treebox">
<a (click)="workerTag(1)">批量更新workerTag</a>
<a (click)="workerTag(2)">批量更新oilin_sleep_m</a>
<nz-tree [nzHideUnMatched]='true' [nzSearchValue]="searchValue" #nzTreeComponent [nzData]="nodes"
[nzExpandAll]="nzExpandAll" [nzExpandedKeys]="defaultExpandedKeys" [nzSelectedKeys]='nzSelectedKeys'
(nzClick)="nzClick($event)">
@ -51,10 +49,21 @@
<tr *ngFor="let data of basicTable.data">
<td>{{data.hostIPAddress}}</td>
<td>!配置状态!</td>
<td>{{data.deviceProvider === 0 ? '警旗1' : data.deviceProvider === 1 ? '警旗2' :'警旗3'}}</td>
<td>{{data.deviceProvider === 0 ? '警旗1' : data.deviceProvider === 1 ? '警旗2' : data.deviceProvider === 2
?'警旗3' :'北京展厅'}}</td>
<td class="operation">
<a (click)="edit(data)" style="margin-right: 12px;">编辑</a>
<a (click)="config(data)" style="margin-right: 12px;">配置</a>
<!-- <nz-modal [(nzVisible)]="isVisible" [nzWidth]="350" nzTitle="请选择要配置的边缘主机" (nzOnCancel)="handleCancel()"
(nzOnOk)="handleOk()">
<ng-container *nzModalContent>
<nz-radio-group [(ngModel)]="radioValue">
<label nz-radio nzValue="警旗1">警旗1</label>
<label nz-radio nzValue="警旗2">警旗2</label>
<label nz-radio nzValue="警旗3">警旗3</label>
</nz-radio-group>
</ng-container>
</nz-modal> -->
<a (click)="download(data)" style="margin-right: 12px;">下载设备编号</a>
<a class="red" (click)="delete(data)">删除</a>
</td>

14
src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss

@ -8,6 +8,7 @@
font-size: 15px;
}
.orbox {
width: 375px;
height: 100%;
@ -26,7 +27,7 @@
.lefttop {
span {
color: #000d21;
color: #000D21;
margin-right: 16px;
}
@ -55,17 +56,15 @@
line-height: 36px;
display: flex;
justify-content: space-between;
color: #000d21;
color: #000D21;
box-sizing: border-box;
padding: 0 30px;
padding:0 30px;
background: rgba(145, 204, 255, 0.2);
border: 1px solid rgba(145, 204, 255, 0.2);
}
.treebox {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: auto;
border: 1px solid rgba(145, 204, 255, 0.2);
border-top: 0px;
@ -73,6 +72,7 @@
padding: 10px 6px;
tr {
th,
td {
text-align: center !important;
@ -94,6 +94,6 @@
margin-top: 16px;
}
.red:hover {
.red:hover{
color: red;
}
}

19
src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts

@ -224,19 +224,10 @@ export class AnalysisOfTheHostComponent implements OnInit {
isVisible = false;
radioValue = '警旗1';
configdata;
deviceProviderObj = {
0: '警旗1',
1: '警旗2',
2: '警旗3',
4: '警旗3',
};
config(data: any) {
sessionStorage.setItem('hostIPAddress', data.hostIPAddress);
// this.isVisible = true;
this.configdata = data;
console.log(this.configdata);
// return;
let body = {
deviceProvider: this.configdata.deviceProvider,
};
@ -247,7 +238,7 @@ export class AnalysisOfTheHostComponent implements OnInit {
queryParams: {
hostId: this.configdata.id,
orId: this.selectedOilStation.id,
type: this.deviceProviderObj[this.configdata.deviceProvider],
type: DeviceProvider[this.configdata.deviceProvider],
},
});
}, 0);
@ -314,14 +305,13 @@ export class AnalysisOfTheHostComponent implements OnInit {
});
}
workerTag(type: number) {
workerTag() {
this.modal.create({
nzTitle: type == 1 ? '批量更新workerTag' : '批量更新oilin_sleep_m',
nzTitle: '修改workerTag字段',
nzContent: WorkerTagComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 500,
nzComponentParams: {
type: type,
tree: this.nodes,
},
nzFooter: null,
@ -332,5 +322,6 @@ export class AnalysisOfTheHostComponent implements OnInit {
enum DeviceProvider {
'警旗1' = 0,
'警旗2' = 1,
'警旗3' = 2 | 4,
'警旗3' = 2,
'北京展厅' = 3,
}

1
src/app/system-management/analysis-of-the-host/edithost/edithost.component.html

@ -15,6 +15,7 @@
<nz-option [nzValue]="0" nzLabel="警旗1"></nz-option>
<nz-option [nzValue]="1" nzLabel="警旗2"></nz-option>
<nz-option [nzValue]="2" nzLabel="警旗3"></nz-option>
<nz-option [nzValue]="3" nzLabel="北京展厅"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>

12
src/app/system-management/analysis-of-the-host/worker-tag/worker-tag.component.html

@ -3,15 +3,9 @@
<nz-tree [hidden]="!(step === 1)" #nzTreeComponent [nzData]="nodes" nzCheckable
[nzCheckedKeys]="defaultCheckedKeys" [nzExpandedKeys]="defaultExpandedKeys"></nz-tree>
<div class="inputbox" [hidden]="!(step === 2)">
<div *ngIf="type==1">
<button (click)="addInput()" nz-button>增加一行</button>
<div class="inputItem" *ngFor="let item of inputList;let key =index">
<input nz-input [(ngModel)]="item.value" [name]="key.toString()" />
</div>
</div>
<div *ngIf="type==2">
<input nz-input [(ngModel)]="oldValue" type="number" placeholder="老值" />
<input nz-input [(ngModel)]="newValue" type="number" placeholder="新值" />
<button (click)="addInput()" nz-button>增加一行</button>
<div class="inputItem" *ngFor="let item of inputList;let key =index">
<input nz-input [(ngModel)]="item.value" [name]="key.toString()" />
</div>
</div>
</div>

67
src/app/system-management/analysis-of-the-host/worker-tag/worker-tag.component.ts

@ -11,7 +11,6 @@ import { TreeService } from 'src/app/service/tree.service';
})
export class WorkerTagComponent implements OnInit {
@Input() tree: any;
@Input() type: number;
@ViewChild('nzTreeComponent', { static: false })
nzTreeComponent!: NzTreeComponent;
defaultCheckedKeys = [];
@ -67,9 +66,6 @@ export class WorkerTagComponent implements OnInit {
addInput() {
this.inputList.push({ value: '' });
}
oldValue: string;
newValue: string;
ok() {
let ids =
this.nzTreeComponent.getCheckedNodeList().map((item) => {
@ -84,17 +80,9 @@ export class WorkerTagComponent implements OnInit {
this.message.create('info', '请至少选择一个加油站');
return;
}
if (this.type == 1) {
if (this.inputList.find((v) => !v.value)) {
this.message.create('info', '请将所有输入框填写完整');
return;
}
}
if (this.type == 2) {
if (!this.oldValue || !this.newValue) {
this.message.create('info', '请将所有输入框填写完整');
return;
}
if (this.inputList.find((v) => !v.value)) {
this.message.create('info', '请将所有输入框填写完整');
return;
}
let _this = this;
function BatchModifyWorkerTags() {
@ -109,38 +97,13 @@ export class WorkerTagComponent implements OnInit {
resolve(data);
},
error: (err) => {
// _this.message.create('error', '批量修改失败,请重试');
reject(err);
},
});
});
return a;
}
function BatchModifyoi() {
var a = new Promise<void>((resolve, reject) => {
let obj = {
replaceString: 'oilin_sleep_m: ' + _this.newValue,
targetString: 'oilin_sleep_m: ' + _this.oldValue,
};
_this.http
.put('/api/EdgeDevices/BatchModifyConfig', ids, {
params: obj,
})
.subscribe({
next: (data: any) => {
_this.message.create('success', '批量修改成功');
resolve(data);
},
error: (err) => {
// _this.message.create('error', '批量修改失败,请重试');
_this.message.create('error', '批量修改失败,请重试');
reject(err);
},
});
});
return a;
}
function BatchPushFile() {
let b = new Promise<void>((resolve, reject) => {
_this.http
@ -153,27 +116,17 @@ export class WorkerTagComponent implements OnInit {
resolve(data);
},
error: (err) => {
// _this.message.create('error', '批量推送失败');
_this.message.create('error', '批量推送失败');
reject(err);
},
});
});
return b;
}
if (this.type == 1) {
BatchModifyWorkerTags()
.then((data) => {
BatchPushFile();
})
.catch((err) => {});
}
if (this.type == 2) {
BatchModifyoi()
.then((data) => {
BatchPushFile();
})
.catch((err) => {});
}
BatchModifyWorkerTags()
.then((data) => {
BatchPushFile();
})
.catch((err) => {});
}
}

12
src/app/system-management/condition-monitoring/condition-monitoring.component.html

@ -20,6 +20,7 @@
</nz-form-item>
<nz-form-item>
<!-- <nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="state">设备状态</nz-form-label> -->
<nz-form-control>
<nz-select formControlName="state" nzPlaceHolder="请选择设备状态">
<nz-option [nzValue]="0" nzLabel="离线"></nz-option>
@ -27,16 +28,7 @@
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-control>
<nz-select formControlName="updatestate" nzPlaceHolder="请选择识别程序更新状态" nzAllowClear>
<nz-option [nzValue]="'Never'" nzLabel="未更新"></nz-option>
<nz-option [nzValue]="'Updating'" nzLabel="更新中"></nz-option>
<nz-option [nzValue]="'Updated'" nzLabel="已更新"></nz-option>
<nz-option [nzValue]="'UpdatingTimeout'" nzLabel="更新超时"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item class="btn">
<nz-form-control>

338
src/app/system-management/condition-monitoring/condition-monitoring.component.ts

@ -9,51 +9,43 @@ import { ModelComponent } from './model/model.component';
@Component({
selector: 'app-condition-monitoring',
templateUrl: './condition-monitoring.component.html',
styleUrls: ['./condition-monitoring.component.scss'],
styleUrls: ['./condition-monitoring.component.scss']
})
export class ConditionMonitoringComponent implements OnInit {
constructor(
private http: HttpClient,
private fb: FormBuilder,
private toTree: TreeService,
private message: NzMessageService,
private modal: NzModalService,
private viewContainerRef: ViewContainerRef
) {}
constructor(private http: HttpClient, private fb: FormBuilder, private toTree: TreeService, private message: NzMessageService, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { }
validateForm!: FormGroup;
ngOnInit(): void {
this.validateForm = this.fb.group({
organization: [null],
state: [null],
updatestate: [null],
state: [null]
});
this.getAllOrganization();
this.getAllOrganization()
}
//获取所有组织机构
nodes: any = [];
defaultOrId: string;
nodes: any = []
defaultOrId: string
defaultExpandedKeys = [];
getAllOrganization() {
let params = {
ContainsChildren: true,
pageSize: 9999,
};
this.http
.get('/api/Organizations', {
params: params,
})
.subscribe((data: any) => {
console.log('组织机构列表', data);
data.items.forEach((element) => {
element.key = element.id;
element.title = element.name;
// element.selectable = false
});
this.nodes = [...this.toTree.toTree(data.items)];
this.defaultOrId = this.nodes[0].id;
this.validateForm.value.organization = this.defaultOrId;
this.getConditionMonitoring();
pageSize: 9999
}
this.http.get('/api/Organizations', {
params: params
}).subscribe((data: any) => {
console.log('组织机构列表', data)
data.items.forEach(element => {
element.key = element.id
element.title = element.name
// element.selectable = false
});
this.nodes = [...this.toTree.toTree(data.items)]
this.defaultOrId = this.nodes[0].id
this.validateForm.value.organization = this.defaultOrId
this.getConditionMonitoring()
})
}
submitForm(): void {
@ -61,7 +53,7 @@ export class ConditionMonitoringComponent implements OnInit {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
}
this.getConditionMonitoring();
this.getConditionMonitoring()
}
resetForm(e: MouseEvent): void {
e.preventDefault();
@ -73,13 +65,13 @@ export class ConditionMonitoringComponent implements OnInit {
this.validateForm.patchValue({
organization: this.nodes[0].id,
});
this.PageNumber = 1;
this.getConditionMonitoring();
this.PageNumber = 1
this.getConditionMonitoring()
}
listOfData: any;
num: string;
PageNumber: number = 1;
isLoading = false;
listOfData: any
num: string
PageNumber: number = 1
isLoading = false
//获取盒子状态
getConditionMonitoring() {
let params = {
@ -87,27 +79,28 @@ export class ConditionMonitoringComponent implements OnInit {
OrganizationId: this.defaultOrId,
PageNumber: this.PageNumber,
PageSize: 10,
HubConnectionState: this.validateForm.value.state,
AppUpdatingState: this.validateForm.value.updatestate,
};
this.isLoading = true;
HubConnectionState: this.validateForm.value.state
}
this.isLoading = true
this.http.get('/api/EdgeDevices/Statuses', { params: params }).subscribe(
(data: any) => {
console.log(data);
this.isLoading = false;
this.listOfData = data.items;
this.num = data.totalCount;
},
(err) => {}
);
console.log(data)
this.isLoading = false
this.listOfData = data.items
this.num = data.totalCount
}, err => {
}
)
}
pageChange($event) {
this.PageNumber = $event;
this.getConditionMonitoring();
this.PageNumber = $event
this.getConditionMonitoring()
}
checked = false;
loading;
loading
indeterminate = false;
listOfCurrentPageData: readonly any[] = [];
setOfCheckedId = new Set<number>();
@ -125,15 +118,9 @@ export class ConditionMonitoringComponent implements OnInit {
}
refreshCheckedStatus(): void {
const listOfEnabledData = this.listOfCurrentPageData.filter(
({ disabled }) => !disabled
);
this.checked = listOfEnabledData.every(({ id }) =>
this.setOfCheckedId.has(id)
);
this.indeterminate =
listOfEnabledData.some(({ id }) => this.setOfCheckedId.has(id)) &&
!this.checked;
const listOfEnabledData = this.listOfCurrentPageData.filter(({ disabled }) => !disabled);
this.checked = listOfEnabledData.every(({ id }) => this.setOfCheckedId.has(id));
this.indeterminate = listOfEnabledData.some(({ id }) => this.setOfCheckedId.has(id)) && !this.checked;
}
onItemChecked(id: number, checked: boolean): void {
@ -148,64 +135,60 @@ export class ConditionMonitoringComponent implements OnInit {
this.refreshCheckedStatus();
}
selectedBoxId = [];
selectedBoxId = []
updateBox(type, name) {
const requestData = this.listOfData.filter((data) =>
this.setOfCheckedId.has(data.id)
);
this.selectedBoxId = [];
requestData.forEach((element) => {
this.selectedBoxId.push(element.id);
const requestData = this.listOfData.filter(data => this.setOfCheckedId.has(data.id));
this.selectedBoxId = []
requestData.forEach(element => {
this.selectedBoxId.push(element.id)
});
if (this.selectedBoxId.length == 0) {
this.modal.confirm({
nzTitle: `<i>确定更新所有边缘主机的${name}吗?</i>`,
nzOnOk: () => {
console.log('OK');
this.sendRequest(type, true);
},
console.log('OK')
this.sendRequest(type, true)
}
});
} else {
this.sendRequest(type, false);
this.sendRequest(type, false)
}
}
sendRequest(type, isAllBox): void {
let body;
let body
if (type != 'UpdateModels') {
this.loading = type;
body = {
edgeDeviceIds: this.selectedBoxId,
allEdgeDevices: isAllBox,
};
this.http
.patch('/api/EdgeDevices/Commands', body, { params: { command: type } })
.subscribe({
next: (data: any) => {
this.message.create(
'success',
'通知边缘盒子成功,请过一段时间手动刷新尝试!'
);
let str = '更新失败列表<br>';
if (data.failedItems.length != 0) {
data.failedItems.forEach((element) => {
str += element.detail + '<br>';
});
this.message.create('info', str, {
nzDuration: 3000,
});
}
allEdgeDevices: isAllBox
}
this.http.patch('/api/EdgeDevices/Commands', body, { params: { command: type } }).subscribe({
next: (data: any) => {
this.message.create('success', '通知边缘盒子成功,请过一段时间手动刷新尝试!');
let str = '更新失败列表<br>'
if (data.failedItems.length != 0) {
data.failedItems.forEach(element => {
str += element.detail + '<br>'
});
this.message.create('info', str, {
nzDuration: 3000
});
}
this.setOfCheckedId.clear();
this.refreshCheckedStatus();
this.loading = null;
this.getConditionMonitoring();
},
error: (err) => {
this.loading = null;
},
});
this.setOfCheckedId.clear();
this.refreshCheckedStatus();
this.loading = null;
this.getConditionMonitoring()
},
error: (err) => {
this.loading = null;
}
})
} else {
const modal = this.modal.create({
nzTitle: '选择更新模型类型',
@ -218,73 +201,66 @@ export class ConditionMonitoringComponent implements OnInit {
body = {
edgeDeviceIds: this.selectedBoxId,
modelNames: instance.validateForm.value.type,
allEdgeDevices: isAllBox,
};
await new Promise((resolve) => {
this.http
.patch('/api/EdgeDevices/Commands', body, {
params: { command: type },
})
.subscribe({
next: (data: any) => {
resolve(data);
this.message.create(
'success',
'通知边缘盒子成功,请过一段时间手动刷新尝试!'
);
let str = '更新失败列表<br>';
if (data.failedItems.length != 0) {
data.failedItems.forEach((element) => {
str += element.detail + '<br>';
});
this.message.create('info', str, {
nzDuration: 3000,
});
}
allEdgeDevices: isAllBox
}
await new Promise(resolve => {
this.http.patch('/api/EdgeDevices/Commands', body, { params: { command: type } }).subscribe({
next: (data: any) => {
resolve(data)
this.message.create('success', '通知边缘盒子成功,请过一段时间手动刷新尝试!');
let str = '更新失败列表<br>'
if (data.failedItems.length != 0) {
data.failedItems.forEach(element => {
str += element.detail + '<br>'
});
this.message.create('info', str, {
nzDuration: 3000
});
}
this.setOfCheckedId.clear();
this.refreshCheckedStatus();
this.loading = null;
this.getConditionMonitoring();
return true;
},
error: (err) => {
resolve(err);
this.loading = null;
return false;
},
});
});
this.setOfCheckedId.clear();
this.refreshCheckedStatus();
this.loading = null;
this.getConditionMonitoring()
return true
},
error: (err) => {
resolve(err)
this.loading = null;
return false
}
})
})
} else {
this.message.create('warning', '请填写完整!');
return false;
return false
}
},
}
});
const instance = modal.getContentComponent();
}
}
updateBoxfile() {
const requestData = this.listOfData.filter((data) =>
this.setOfCheckedId.has(data.id)
);
this.selectedBoxId = [];
requestData.forEach((element) => {
this.selectedBoxId.push(element.id);
const requestData = this.listOfData.filter(data => this.setOfCheckedId.has(data.id));
this.selectedBoxId = []
requestData.forEach(element => {
this.selectedBoxId.push(element.id)
});
if (this.selectedBoxId.length == 0) {
this.modal.confirm({
nzTitle: `<i>确定更新所有边缘主机的监控程序配置文件吗?</i>`,
nzOnOk: () => {
this.file(true);
},
this.file(true)
}
});
} else {
this.file(false);
this.file(false)
}
}
file(isAllBox) {
const modal = this.modal.create({
nzTitle: '配置文件',
@ -300,46 +276,42 @@ export class ConditionMonitoringComponent implements OnInit {
host: instance.validateForm.value.host,
port: instance.validateForm.value.port,
maxRetries: instance.validateForm.value.maxRetries,
allEdgeDevices: isAllBox,
};
allEdgeDevices: isAllBox
}
await new Promise((resolve, reject) => {
this.loading = 'file';
this.http
.patch('/api/EdgeDevices/Commands/PushMonitorSettingsJson', body)
.subscribe({
next: (data: any) => {
this.message.create(
'success',
'通知边缘盒子成功,请过一段时间手动刷新尝试!'
);
let str = '更新失败列表<br>';
if (data.failedItems.length != 0) {
data.failedItems.forEach((element) => {
str += element.detail + '<br>';
});
this.message.create('info', str, {
nzDuration: 3000,
});
}
this.setOfCheckedId.clear();
this.refreshCheckedStatus();
this.getConditionMonitoring();
this.loading = null;
resolve(data);
return true;
},
error: (err) => {
reject(err);
this.loading = null;
},
});
});
this.loading = 'file'
this.http.patch('/api/EdgeDevices/Commands/PushMonitorSettingsJson', body).subscribe({
next: (data: any) => {
this.message.create('success', '通知边缘盒子成功,请过一段时间手动刷新尝试!');
let str = '更新失败列表<br>'
if (data.failedItems.length != 0) {
data.failedItems.forEach(element => {
str += element.detail + '<br>'
});
this.message.create('info', str, {
nzDuration: 3000
});
}
this.setOfCheckedId.clear();
this.refreshCheckedStatus();
this.getConditionMonitoring()
this.loading = null;
resolve(data)
return true
},
error: (err) => {
reject(err)
this.loading = null;
}
})
})
} else {
this.message.create('warning', '请填写完整!');
return false;
return false
}
},
}
});
const instance = modal.getContentComponent();
}
}

10
src/app/system-management/host-config/addcamera/addcamera.component.html

@ -16,15 +16,6 @@
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="decoderType">编码类型</nz-form-label>
<nz-form-control>
<nz-select formControlName="decoderType" nzPlaceHolder="请选择编码类型">
<nz-option [nzValue]="264" nzLabel="264"></nz-option>
<nz-option [nzValue]="265" nzLabel="265"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="password">密码</nz-form-label>
<nz-form-control>
@ -49,6 +40,7 @@
<nz-option [nzValue]="1" nzLabel="加油区"></nz-option>
<nz-option [nzValue]="2" nzLabel="卸油区"></nz-option>
<nz-option [nzValue]="3" nzLabel="便利店"></nz-option>
<nz-option [nzValue]="4" nzLabel="办公区"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>

1
src/app/system-management/host-config/addcamera/addcamera.component.ts

@ -18,7 +18,6 @@ export class AddcameraComponent implements OnInit {
this.validateForm = this.fb.group({
name: [null, [Validators.required, namevalidate]],
user: [null, [Validators.required]],
decoderType: [null, [Validators.required]],
password: [null, [Validators.required]],
uri: [null, [Validators.required]],
type: [null, [Validators.required]],

10
src/app/system-management/host-config/editcamera/editcamera.component.html

@ -16,15 +16,6 @@
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="decoderType">编码类型</nz-form-label>
<nz-form-control>
<nz-select formControlName="decoderType" nzPlaceHolder="请选择编码类型">
<nz-option [nzValue]="264" nzLabel="264"></nz-option>
<nz-option [nzValue]="265" nzLabel="265"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="password">密码</nz-form-label>
<nz-form-control>
@ -49,6 +40,7 @@
<nz-option [nzValue]="1" nzLabel="加油区"></nz-option>
<nz-option [nzValue]="2" nzLabel="卸油区"></nz-option>
<nz-option [nzValue]="3" nzLabel="便利店"></nz-option>
<nz-option [nzValue]="4" nzLabel="办公区"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>

21
src/app/system-management/host-config/editcamera/editcamera.component.ts

@ -7,29 +7,26 @@ import { MyValidators } from '../addcamera/addcamera.component';
@Component({
selector: 'app-editcamera',
templateUrl: './editcamera.component.html',
styleUrls: ['./editcamera.component.scss'],
styleUrls: ['./editcamera.component.scss']
})
export class EditcameraComponent implements OnInit {
@Input() data: any;
@Input() data: any
validateForm!: FormGroup;
constructor(
private modal: NzModalRef,
private fb: FormBuilder,
private http: HttpClient
) {}
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient) { }
ngOnInit(): void {
const { namevalidate } = MyValidators;
let datacopy = JSON.parse(JSON.stringify(this.data));
console.log('编辑数据', datacopy);
let datacopy = JSON.parse(JSON.stringify(this.data))
console.log('编辑数据', datacopy)
this.validateForm = this.fb.group({
name: [datacopy.name, [Validators.required, namevalidate]],
name: [datacopy.name, [Validators.required,namevalidate]],
user: [datacopy.user, [Validators.required]],
decoderType: [datacopy.decoderType, [Validators.required]],
password: [datacopy.password, [Validators.required]],
uri: [datacopy.uri, [Validators.required]],
type: [datacopy.type, [Validators.required]],
order: [datacopy.order, [Validators.required]],
order: [datacopy.order, [Validators.required]]
});
}
}

6
src/app/system-management/host-config/host-config.component.html

@ -35,7 +35,7 @@
<span *ngIf="hostType === '警旗2'">
{{item.dimensionedPointsHuanghai ? '已标注' : '未标注'}}
</span>
<span *ngIf="hostType === '警旗3'">
<span *ngIf="hostType === '警旗3' || hostType === '北京展厅'">
{{item.dimensionedPointsAnxin ? '已标注' : '未标注'}}
</span>
</td>
@ -43,7 +43,6 @@
<td>
<span class="blue" style="margin-right: 12px;" (click)="editCamera(item)">编辑</span>
<span class="blue" style="margin-right: 12px;" (click)="label(item)">标注</span>
<span class="blue" *ngIf="my" style="margin-right: 12px;" (click)="simulate(item)">模拟数据</span>
<ng-container *ngIf="item.isEnabled; else elseTemplate2">
<span class="red" style="margin-right: 12px;" (click)="forbidden(item)">禁用</span>
</ng-container>
@ -68,6 +67,9 @@
<div class="footer" *ngIf="hostType === '警旗3'">
<button nz-button nzType="primary" (click)="configToAx()">下发安信data.yaml配置</button>
</div>
<div class="footer" *ngIf="hostType === '北京展厅'">
<button nz-button nzType="primary" (click)="configToAx()">下发北京展厅data.yaml配置</button>
</div>
</div>
</div>
<div class="rightbox">

224
src/app/system-management/host-config/host-config.component.ts

@ -40,7 +40,6 @@ interface Camera {
import yaml from 'js-yaml';
import { ImageLabelAnxinComponent } from '../image-label-anxin/image-label-anxin.component';
import { AnxinConfigComponent } from './anxin-config/anxin-config.component';
import { SimulateDataComponent } from './simulate-data/simulate-data.component';
@Component({
selector: 'app-host-config',
@ -62,14 +61,13 @@ export class HostConfigComponent implements OnInit {
hostId; //主机id
orId; //加油站id
hostType; //黄海还是交大的盒子
my = false;
hostData;
ngOnInit(): void {
this.hostId = this.route.snapshot.queryParams.hostId;
this.orId = this.route.snapshot.queryParams.orId;
this.hostType = this.route.snapshot.queryParams.type;
this.my = this.route.snapshot.queryParams.my;
this.getCamera();
this.getHostData();
}
@ -137,7 +135,6 @@ export class HostConfigComponent implements OnInit {
let body = {
name: instance.validateForm.value.name,
user: instance.validateForm.value.user,
decoderType: instance.validateForm.value.decoderType,
password: instance.validateForm.value.password,
uri: instance.validateForm.value.uri,
type: instance.validateForm.value.type,
@ -185,7 +182,6 @@ export class HostConfigComponent implements OnInit {
let body = {
name: instance.validateForm.value.name,
user: instance.validateForm.value.user,
decoderType: instance.validateForm.value.decoderType,
password: instance.validateForm.value.password,
uri: instance.validateForm.value.uri,
type: instance.validateForm.value.type,
@ -311,7 +307,7 @@ export class HostConfigComponent implements OnInit {
modal.afterClose.subscribe((result) => {
this.ngOnInit();
});
} else if (this.hostType == '警旗3') {
} else if (this.hostType == '警旗3' || this.hostType == '北京展厅') {
const element = document.documentElement;
if (element.requestFullscreen) {
//进入全屏
@ -343,51 +339,6 @@ export class HostConfigComponent implements OnInit {
});
}
simulate(item) {
console.log('模拟数据', item);
const modal = this.modal.create({
nzTitle: '模拟数据',
nzContent: SimulateDataComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 1800,
nzComponentParams: {
data: item,
},
nzOnOk: async () => {
if (instance.validateForm.valid) {
await new Promise((resolve) => {
function generateRandomString(length) {
const chars =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; // 字符集合
let result = '';
for (let i = 0; i < length; i++) {
result += chars.charAt(
Math.floor(Math.random() * chars.length)
);
}
return result;
}
const randomString = generateRandomString(16);
let body = JSON.parse(JSON.stringify(instance.validateForm.value));
body.ExternalId = randomString;
const date = new Date(body.ViolateTime);
date.setHours(date.getHours() + 8);
body.ViolateTime = date.toISOString();
this.http
.post(`/api/Data/ViolationRecordPush`, body)
.subscribe((data) => {
this.message.create('success', '上报成功!');
// resolve(data);
});
});
} else {
this.message.create('warning', '请填写完整!');
return false;
}
},
});
const instance = modal.getContentComponent();
}
connect() {
// let isAllLabel = this.listOfData.find((item: any) => {
// if (item.type != 1 && !item.dimensionedPoints) {
@ -1565,8 +1516,12 @@ rule_threshold:
let data = this.configJsonToAx();
console.log(data);
// return;
let title =
this.hostType === '北京展厅'
? '下发北京展厅配置'
: '下发安信config.json配置';
const modal = this.modal.create({
nzTitle: '下发安信config.json配置',
nzTitle: title,
nzContent: AnxinConfigComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 1000,
@ -1581,7 +1536,15 @@ rule_threshold:
new Promise((resolve, reject) => {
console.log('表单信息', instance.validateForm);
let body = {
configFiles: [{ name: 'data.yaml', content: instance.datacopy }],
configFiles: [
{
name:
this.hostType === '北京展厅'
? 'bjzhanting.yaml'
: 'data.yaml',
content: instance.datacopy,
},
],
};
this.http.put(`/api/EdgeDevices/${this.hostId}`, body).subscribe({
next: (data) => {
@ -1590,7 +1553,10 @@ rule_threshold:
this.getHostData();
let params = {
edgeDeviceId: this.hostId,
fileName: 'data.yaml',
fileName:
this.hostType === '北京展厅'
? 'bjzhanting.yaml'
: 'data.yaml',
};
this.http
.put('/api/EdgeDevices/Commands/PushFile', '', {
@ -1614,56 +1580,98 @@ rule_threshold:
}
configJsonToAx() {
let data = {
server: null,
obs: null,
userInfo: {
user: '',
password: '',
},
ip: this.hostData.hostIPAddress,
imgScale: 1.5,
cpuRtsp: false,
warning: {
open: false,
volume: 6,
continue_s: 5,
dev: 'ttyUSB0',
},
audio: {
open: false,
volume: 0.5,
},
pipline: '',
workerTag: ['worker'],
caps: [],
params: {
smoke_sleep_m: 5,
smoke_continue_s: 3,
call_sleep_m: 5,
call_continue_s: 3,
pay_sleep_m: 5,
pay_continue_s: 3,
oilin_sleep_m: 5,
oilin_continue_s: 1,
stop_step_s: 60,
stop_continue_m: 30,
sameCarThreshold: 5,
smog_sleep_m: 5,
smog_continue_s: 3,
fire_sleep_m: 5,
fire_continue_s: 3,
lossScore: 40, //没检测到物体的惩罚分数
},
};
console.log(this.hostData);
let data;
if (this.hostType === '北京展厅') {
data = {
server: null,
obs: null,
userInfo: {
user: '',
password: '',
},
ip: this.hostData.hostIPAddress,
imgScale: 1.5,
cpuRtsp: false,
pipline: '',
workerTag: ['worker'],
caps: [],
params: {
smoke_sleep_m: 1,
smoke_continue_s: 1,
call_sleep_m: 1,
call_continue_s: 1,
pay_sleep_m: 5,
pay_continue_s: 3,
oilin_sleep_m: 5,
oilin_continue_s: 1,
stop_step_s: 60,
stop_continue_m: 30,
sameCarThreshold: 5,
smog_sleep_m: 5,
smog_continue_s: 3,
fire_sleep_m: 5,
fire_continue_s: 3,
geli_continue_s: 1,
miehuo_continue_s: 1,
gather_dis_min: 0.15,
gather_err_num: 3,
gather_continue_s: 0.5,
gather_sleep: 1,
helmeted_continue_s: 3,
workerIn_continue_s: 3,
workerOut_continue_s: 5,
workerSleep_continue_s: 3,
lossScore: 40, //没检测到物体的惩罚分数
},
};
} else {
data = {
server: null,
obs: null,
userInfo: {
user: '',
password: '',
},
ip: this.hostData.hostIPAddress,
imgScale: 1.5,
cpuRtsp: false,
pipline: '',
workerTag: ['worker'],
caps: [],
params: {
smoke_sleep_m: 5,
smoke_continue_s: 3,
call_sleep_m: 5,
call_continue_s: 3,
pay_sleep_m: 5,
pay_continue_s: 3,
oilin_sleep_m: 5,
oilin_continue_s: 1,
stop_step_s: 60,
stop_continue_m: 30,
sameCarThreshold: 5,
smog_sleep_m: 5,
smog_continue_s: 3,
fire_sleep_m: 5,
fire_continue_s: 3,
lossScore: 40, //没检测到物体的惩罚分数
},
};
}
// console.log(this.hostData);
//如果保存过安信的配置文件
let yamlname;
this.hostType === '北京展厅'
? (yamlname = 'bjzhanting.yaml')
: (yamlname = 'data.yaml');
if (
this.hostData.configFiles &&
this.hostData.configFiles.find((v) => v.name === 'data.yaml')
this.hostData.configFiles.find((v) => v.name === yamlname)
) {
let oldFile = yaml.load(
this.hostData.configFiles.find((v) => v.name === 'data.yaml').content
this.hostData.configFiles.find((v) => v.name === yamlname).content
);
// console.log('曾经保存过安信的配置文件', oldFile);
for (const key in oldFile) {
@ -1685,9 +1693,14 @@ rule_threshold:
} else {
let server;
let obs;
console.log('location.origin', location.origin);
if (location.origin.indexOf('121') !== -1) {
if (location.origin.indexOf('8225') !== -1) {
obs = 'http://121.36.37.70:8226';
} else {
obs = 'http://121.36.37.70:8906';
}
server = 'http://121.36.37.70:8208';
obs = 'http://121.36.37.70:8906';
} else {
server = 'http://10.156.134.53:8208';
obs = 'https://znaq.sinochemoilmarketing.com';
@ -1700,13 +1713,15 @@ rule_threshold:
if (item.isEnabled) {
let type = null;
item.type === 0
? (type = 2)
? (type = 2) //进出口
: item.type === 1
? (type = 1)
? (type = 1) //加油区
: item.type === 2
? (type = 0)
? (type = 0) //卸油区
: item.type === 3
? (type = 4)
? (type = 4) //收银区
: item.type === 4
? (type = 5) //办公区
: null;
let areas = [];
@ -1720,7 +1735,6 @@ rule_threshold:
id: item.id,
type: type,
url: item.uri,
decoder: item.decoderType,
name: item.name,
user: item.user,
password: item.password,

82
src/app/system-management/host-config/simulate-data/simulate-data.component.html

@ -1,82 +0,0 @@
<div class="box">
<form nz-form [formGroup]="validateForm" [nzLayout]="'inline'">
<nz-form-item>
<nz-form-label nzRequired nzFor="HostIPAddress">主机地址</nz-form-label>
<nz-form-control>
<nz-input-group>
<input nz-input type="text" formControlName="HostIPAddress" placeholder="请输入主机地址" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label nzRequired nzFor="EventSystemName">预警事件</nz-form-label>
<nz-form-control>
<nz-select formControlName="EventSystemName" nzPlaceHolder="请选择预警事件">
<nz-option *ngFor="let item of eventList" [nzValue]="item" [nzLabel]="item"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label nzRequired nzFor="ViolateArea">预警区域</nz-form-label>
<nz-form-control>
<nz-select formControlName="ViolateArea" nzPlaceHolder="请选择预警区域">
<nz-option *ngFor="let item of areaList" [nzValue]="item" [nzLabel]="item"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label nzRequired nzFor="CameraNo">摄像头编号</nz-form-label>
<nz-form-control>
<nz-input-group>
<input nz-input type="text" formControlName="CameraNo" placeholder="请输入摄像头编号" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label nzRequired nzFor="ViolateTime">选择日期</nz-form-label>
<nz-form-control>
<nz-date-picker nzShowTime formControlName="ViolateTime"></nz-date-picker>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label nzRequired nzFor="ViolateImage">图片地址</nz-form-label>
<nz-form-control>
<nz-input-group>
<input nz-input type="text" formControlName="ViolateImage" placeholder="请输入图片地址" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label nzRequired nzFor="violateVideo">视频地址</nz-form-label>
<nz-form-control>
<nz-input-group>
<input nz-input type="text" formControlName="violateVideo" placeholder="请输入图片地址" />
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label>第一步</nz-form-label>
<button nz-button (click)="getImg()">捕获图片</button>
</nz-form-item>
<nz-form-item>
<button nz-button (click)="getVideo()">捕获视频</button>
</nz-form-item>
<nz-form-item>
<nz-form-label>第二步</nz-form-label>
<button nz-button (click)="updateImg()">更新底图</button>
</nz-form-item>
<nz-form-item>
<button nz-button (click)="updateVideo()">更新视频</button>
</nz-form-item>
</form>
<div class="img_box">
<canvas #canvas (mousedown)="onMouseDown($event)" (mousemove)="onMouseMove($event)" (mouseup)="onMouseUp()"
style="border: 1px solid #ccc;"></canvas>
<video style="width: 500px;height: auto;" [src]="videoUrl" controls></video>
<div>
<button style="margin-bottom: 10px;" nz-button nzType="primary" (click)="uploadImg()">上传预警图片</button>
<button nz-button nzType="primary" (click)="uploadVideo()">上传预警视频</button>
</div>
</div>
</div>

16
src/app/system-management/host-config/simulate-data/simulate-data.component.scss

@ -1,16 +0,0 @@
.ant-form-item {
margin-bottom: 10px;
}
.img_box {
height: auto;
display: flex;
canvas {
max-width: 1000px;
height: auto;
}
button {
margin: 0;
margin-left: 10px;
}
}

25
src/app/system-management/host-config/simulate-data/simulate-data.component.spec.ts

@ -1,25 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SimulateDataComponent } from './simulate-data.component';
describe('SimulateDataComponent', () => {
let component: SimulateDataComponent;
let fixture: ComponentFixture<SimulateDataComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ SimulateDataComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(SimulateDataComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

327
src/app/system-management/host-config/simulate-data/simulate-data.component.ts

@ -1,327 +0,0 @@
import { Component, OnInit, Input, ViewChild, ElementRef } from '@angular/core';
import { NzModalRef } from 'ng-zorro-antd/modal';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { HttpClient } from '@angular/common/http';
import { DomSanitizer } from '@angular/platform-browser';
import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({
selector: 'app-simulate-data',
templateUrl: './simulate-data.component.html',
styleUrls: ['./simulate-data.component.scss'],
})
export class SimulateDataComponent implements OnInit {
@Input() data: any;
validateForm!: FormGroup;
constructor(
private fb: FormBuilder,
private http: HttpClient,
private objectsSrv: ObjectsSimpleService,
private message: NzMessageService,
private sanitizer: DomSanitizer
) {}
currentTime = null;
arr = ['进出口', '加油区', '卸油区', '便利店'];
ngOnInit(): void {
this.currentTime = new Date().getTime();
let datacopy = JSON.parse(JSON.stringify(this.data));
let HostIPAddress = sessionStorage.getItem('hostIPAddress');
this.validateForm = this.fb.group({
HostIPAddress: [HostIPAddress, [Validators.required]],
EventSystemName: [null, [Validators.required]],
ViolateArea: [this.arr[datacopy.type], [Validators.required]],
CameraNo: [datacopy.name, [Validators.required]],
ViolateTime: [null, [Validators.required]],
ViolateImage: [
`/api/Objects/test/${this.currentTime}/image.png`,
[Validators.required],
],
violateVideo: [
`/api/Objects/test/${this.currentTime}/video.mp4`,
[Validators.required],
],
});
this.getImgMarkData();
this.updateVideo();
}
@ViewChild('canvas') canvasRef: ElementRef<HTMLCanvasElement>;
private ctx: CanvasRenderingContext2D;
imgUrl: string;
isDrawing = false;
startX: number;
startY: number;
endX: number;
endY: number;
img: HTMLImageElement;
//获取 摄像头图片/标注点位
getImgMarkData() {
const httpOptions = {
responseType: 'blob' as 'json',
params: { cameraId: this.data.id },
};
let date = new Date().getTime();
this.http.get(`/api/Cameras/Images?v=${date}`, httpOptions).subscribe({
next: (data: any) => {
setTimeout(() => {
this.initCanvas(data);
}, 0);
},
error: (error) => {
console.error('获取图片数据失败', error);
setTimeout(() => {
this.initCanvas(null);
}, 0);
},
});
}
canvasObj = null;
initCanvas(data) {
if (!data) {
// 如果没有获取到图片数据,使用本地默认图片
this.message.warning('未获取到照片数据,使用默认图片');
this.imgUrl = '../../../../assets/images/bgImg.png'; // 请确保这个路径下有默认图片
} else {
this.imgUrl = window.URL.createObjectURL(data);
}
this.img = new Image();
this.img.src = this.imgUrl;
this.img.onerror = () => {
// 如果图片加载失败,也使用默认图片
this.message.warning('图片加载失败,使用默认图片');
this.img.src = '../../../../assets/images/bgImg.png';
};
this.img.onload = () => {
this.canvasObj = this.canvasRef.nativeElement;
this.ctx = this.canvasObj.getContext('2d');
// 设置 canvas 宽度为 1000px,保持图片的宽高比
const targetWidth = 1000;
this.canvasObj.width = targetWidth;
this.canvasObj.height = (this.img.height / this.img.width) * targetWidth;
// 在 canvas 上绘制图片
this.ctx.drawImage(
this.img,
0,
0,
this.canvasObj.width,
this.canvasObj.height
);
};
}
// 开始绘制红框
onMouseDown(event: MouseEvent): void {
this.isDrawing = true;
this.startX = event.offsetX;
this.startY = event.offsetY;
}
// 实时绘制红框
onMouseMove(event: MouseEvent): void {
if (!this.isDrawing) return;
this.endX = event.offsetX;
this.endY = event.offsetY;
const canvas = this.canvasRef.nativeElement;
this.ctx.clearRect(0, 0, canvas.width, canvas.height); // 清除 canvas
this.ctx.drawImage(this.img, 0, 0, canvas.width, canvas.height); // 重新绘制图片
this.ctx.strokeStyle = 'red';
this.ctx.lineWidth = 2;
this.ctx.strokeRect(
this.startX,
this.startY,
this.endX - this.startX,
this.endY - this.startY
);
}
// 停止绘制红框
onMouseUp(): void {
this.isDrawing = false;
}
async uploadImg() {
const canvas = this.canvasRef.nativeElement;
canvas.toBlob(async (blob: Blob) => {
// 创建 File 对象,'image.png' 为文件名,'image/png' 为文件类型
const file = new File([blob], 'image.png', { type: 'image/png' });
console.log(file);
let url = await this.postFile(file);
console.log(url);
this.validateForm.patchValue({
ViolateImage: url, // 替换为你想要的 ViolateImage 值
});
}, 'image/png');
}
async uploadVideo() {
// 创建 File 对象,'image.png' 为文件名,'image/png' 为文件类型
const file = new File([this.videoBlob], 'video.mp4', { type: 'video/mp4' });
console.log(file);
let url = await this.postFile(file);
console.log(url);
this.validateForm.patchValue({
ViolateImage: url, // 替换为你想要的 ViolateImage 值
});
}
//上传文件
async postFile(file: File) {
return new Promise((resolve, reject) => {
this.objectsSrv
.postFile(`${this.currentTime}/`, file)
.subscribe((data) => {
let dataObj = data as any;
let filePath: string =
ObjectsSimpleService.baseUrl + dataObj.objectName;
this.message.create('success', '上传成功');
resolve(filePath);
});
});
}
getImg() {
let params = {
cameraId: this.data.id,
provider: 1,
};
this.http
.put('/api/Cameras/Commands/CaptureImages', '', { params: params })
.subscribe({
next: (value: Object) => {
this.message.create(
'success',
'发送指令: 捕获图片成功,请过一段时间手动更新底图!'
);
},
});
}
getVideo() {
let params = {
cameraId: this.data.id,
provider: 1,
};
this.http
.put('/api/Cameras/Commands/CaptureVideos', '', { params: params })
.subscribe({
next: (value: Object) => {
this.message.create(
'success',
'发送指令: 捕获视频成功,请过一段时间手动更新视频!'
);
},
});
}
updateImg() {
const httpOptions = {
responseType: 'blob' as 'json',
params: { cameraId: this.data.id },
};
let date = new Date().getTime();
this.http.get(`/api/Cameras/Images?v=${date}`, httpOptions).subscribe({
next: (data: any) => {
this.replaceBackground(data);
},
});
}
replaceBackground(newData: Blob) {
console.log('newData', newData);
const newImgUrl = window.URL.createObjectURL(newData);
this.img = new Image();
this.img.src = newImgUrl;
this.img.onload = () => {
// 清空 canvas 内容
this.ctx.clearRect(0, 0, this.canvasObj.width, this.canvasObj.height);
// 更新 canvas 大小和图片宽高比
const targetWidth = 1000;
this.canvasObj.width = targetWidth;
this.canvasObj.height = (this.img.height / this.img.width) * targetWidth;
// 绘制新的图片
this.ctx.drawImage(
this.img,
0,
0,
this.canvasObj.width,
this.canvasObj.height
);
};
}
videoBlob = null;
videoUrl = null;
updateVideo() {
const httpOptions = {
responseType: 'blob' as 'json',
params: { cameraId: this.data.id },
};
let date = new Date().getTime();
this.http.get(`/api/Cameras/Videos?v=${date}`, httpOptions).subscribe({
next: (data: any) => {
console.log('视频数据', data);
this.videoBlob = data;
// 获取图片数据 (data 是 Blob 类型)
const unsafeUrl = window.URL.createObjectURL(data);
// 使用 DomSanitizer 处理 URL
this.videoUrl = this.sanitizer.bypassSecurityTrustUrl(unsafeUrl);
},
});
}
eventList = [
'油罐区入侵',
'进出口停车',
'站内吸烟',
'前庭接打电话',
'设置卸油隔离区',
'拆除卸油管',
'卸油连接静电接地',
'卸油设置消防器材',
'卸油现场清理',
'油罐车无人卸油',
'连接卸油管',
'卸油中无人监卸',
'证照年检逾期报警',
'证照年检临期提醒',
'证照年检办理提醒',
'普通证照有效期逾期报警',
'证照有效期办理提醒',
'烟雾预警',
'火灾报警',
'设备报废逾期报警',
'设备报废临期提醒',
'收银员着装',
'关键证照有效期逾期报警',
'证照有效期临期提醒',
'设备维保临期提醒',
'设备维保逾期报警',
];
areaList = [
'进出口',
'卸油区',
'加油区',
'收银区',
'发油区',
'油库区',
'监控区',
'消防通道',
'泵房区',
'油罐区',
'停车区',
];
}

12
src/app/system-management/image-label-anxin/image-label-anxin.component.html

@ -1,4 +1,4 @@
<div class="canvasBox" >
<div class="canvasBox">
<div class="btnbox" cdkDrag>
<label class="leftTitle" style="color: red;">安信盒子标记</label>
@ -6,7 +6,7 @@
<label class="leftTitle" *ngIf="markType === 1">加油区</label>
<label class="leftTitle" *ngIf="markType === 2">卸油区</label>
<label class="leftTitle" *ngIf="markType === 3">便利店</label>
<label class="leftTitle" *ngIf="markType === 4">办公区</label>
<button nz-button [ngClass]="{selectBtn: selectedBtn === '进出口'}" (click)="selectedBtn = '进出口'">进出口
@ -28,6 +28,14 @@
<span class="colorBlock" style="background-color: black;"></span>
<span class="deleteItem" (click)="clearCanvasItem($event,'卸油区')">删除</span>
</button>
<button nz-button [ngClass]="{selectBtn: selectedBtn === '办公区'}" (click)="selectedBtn = '办公区'">办公区
<span class="colorBlock" style="background-color: pink;"></span>
<span class="deleteItem" (click)="clearCanvasItem($event,'办公区')">删除</span>
</button>
<button nz-button [ngClass]="{selectBtn: selectedBtn === '工位'}" (click)="selectedBtn = '工位'">工位
<span class="colorBlock" style="background-color: purple;"></span>
<span class="deleteItem" (click)="clearCanvasItem($event,'工位')">删除</span>
</button>
<button nz-button nzType="primary" (click)="anewgetImg()">重新捕获摄像头图片</button>

92
src/app/system-management/image-label-anxin/image-label-anxin.component.ts

@ -1,5 +1,6 @@
import { HttpClient, HttpErrorResponse } from '@angular/common/http';
import { Component, Input, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { NzMessageService } from 'ng-zorro-antd/message';
import { NzModalService } from 'ng-zorro-antd/modal';
@ -12,7 +13,8 @@ export class ImageLabelAnxinComponent implements OnInit {
constructor(
private http: HttpClient,
private message: NzMessageService,
private modal: NzModalService
private modal: NzModalService,
private route: ActivatedRoute
) {}
@Input() cameraId: any; //传递id
@ -29,7 +31,21 @@ export class ImageLabelAnxinComponent implements OnInit {
}
ngOnInit(): void {}
ngAfterContentInit(): void {
this.getImgMarkData()
.then((res: any) => {
this.imgItem = window.URL.createObjectURL(res);
window.setTimeout(() => {
this.initBackgroundImg();
}, 0);
})
.catch((err) => {
this.message.create('error', '获取图片失败!');
window.setTimeout(() => {
this.initBackgroundImg();
}, 0);
});
}
//获取 摄像头图片/标注点位
getImgMarkData() {
console.log('获取照片', new Date().getTime());
@ -74,22 +90,6 @@ export class ImageLabelAnxinComponent implements OnInit {
});
}
ngAfterContentInit(): void {
this.getImgMarkData()
.then((res: any) => {
this.imgItem = window.URL.createObjectURL(res);
window.setTimeout(() => {
this.initBackgroundImg();
}, 0);
})
.catch((err) => {
this.message.create('error', '获取图片失败!');
window.setTimeout(() => {
this.initBackgroundImg();
}, 0);
});
}
//初始化背景图
canvas;
ctx;
@ -156,32 +156,6 @@ export class ImageLabelAnxinComponent implements OnInit {
}
console.log('原始标点数据', this.camerasData.dimensionedPointsAnxin);
// for (const key in this.camerasData.dimensionedPointsAnxin.rawData) {
// const element = this.camerasData.dimensionedPointsAnxin.rawData[key];
// console.log(key, element);
// if (element.length !== 0) {
// for (let index = 0; index < element.length; index++) {
// const item = element[index];
// console.log(666, item);
// let obj = this.PolygonData[key];
// this.DrawPolygoning = key;
// this.DrawPolygon(
// item.x,
// item.y,
// canvas,
// context,
// obj.Points,
// obj.Circles,
// obj.Allpoints,
// obj.IsDragging,
// obj.IsInOut,
// obj.Color
// );
// }
// }
// this.DrawPolygoning = '';
// }
for (
let key = 0;
key < this.camerasData.dimensionedPointsAnxin.yamlData.length;
@ -190,6 +164,9 @@ export class ImageLabelAnxinComponent implements OnInit {
const element = this.camerasData.dimensionedPointsAnxin.yamlData[key];
let name = enum_area[element.type];
let arr = this.handleArr(element.points);
console.log('arr', arr);
for (let index = 0; index < arr.length; index++) {
const item = arr[index];
let obj = this.PolygonData[name];
@ -210,6 +187,7 @@ export class ImageLabelAnxinComponent implements OnInit {
this.DrawPolygoning = '';
}
}
// 将比例点转换为底图的坐标点
handleArr(arr, n = 2) {
const res = [];
for (let i = 0; i < arr.length - 1; i += 2) {
@ -306,6 +284,22 @@ export class ImageLabelAnxinComponent implements OnInit {
IsInOut: false, //是否在绘制区域内
Color: 'black',
},
: {
Points: [], //线段的点的集合
Circles: [], //可拖动圆圈的点的集合
Allpoints: [], //整体移动点位
IsDragging: false, //是否可拖拽
IsInOut: false, //是否在绘制区域内
Color: 'pink',
},
: {
Points: [], //线段的点的集合
Circles: [], //可拖动圆圈的点的集合
Allpoints: [], //整体移动点位
IsDragging: false, //是否可拖拽
IsInOut: false, //是否在绘制区域内
Color: 'purple',
},
};
//绘制多边形的方法
@ -515,6 +509,8 @@ export class ImageLabelAnxinComponent implements OnInit {
console.log(this.camerasData.dimensionedPointsAnxin);
console.log('标点数据', this.PolygonData);
// console.log(999, this.route.snapshot.queryParams.type);
// return;
for (const key in this.PolygonData) {
const element = this.PolygonData[key];
if (element.Points.length !== 0 && element.Points.length <= 2) {
@ -529,6 +525,8 @@ export class ImageLabelAnxinComponent implements OnInit {
: [],
: [],
: [],
: [],
: [],
};
this.camerasData.dimensionedPointsAnxin.yamlData = [];
}
@ -598,8 +596,10 @@ export class ImageLabelAnxinComponent implements OnInit {
}
enum enum_area {
'进出口' = 0,
'收银区' = 1,
'加油区' = 2,
'卸油区' = 3,
'收银区' = 1,
'进出口' = 0,
'办公区' = 4,
'工位' = 5,
}

4
src/app/system-management/organization/change-or/change-or.component.html

@ -1,4 +0,0 @@
<div class="box">
<nz-tree #nzTreeComponent [nzSelectedKeys]="defaultSelectedKeys" [nzData]="nodes"
[nzExpandedKeys]="defaultExpandedKeys"></nz-tree>
</div>

4
src/app/system-management/organization/change-or/change-or.component.scss

@ -1,4 +0,0 @@
.box {
max-height: 500px;
overflow-y: auto;
}

25
src/app/system-management/organization/change-or/change-or.component.spec.ts

@ -1,25 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ChangeOrComponent } from './change-or.component';
describe('ChangeOrComponent', () => {
let component: ChangeOrComponent;
let fixture: ComponentFixture<ChangeOrComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ChangeOrComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ChangeOrComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

55
src/app/system-management/organization/change-or/change-or.component.ts

@ -1,55 +0,0 @@
import { Component, Input, OnInit, ViewChild } from '@angular/core';
import { NzModalRef } from 'ng-zorro-antd/modal';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { HttpClient } from '@angular/common/http';
import { TreeService } from 'src/app/service/tree.service';
import { NzTreeComponent } from 'ng-zorro-antd/tree';
@Component({
selector: 'app-change-or',
templateUrl: './change-or.component.html',
styleUrls: ['./change-or.component.scss'],
})
export class ChangeOrComponent implements OnInit {
@Input() data?: any;
@ViewChild('nzTreeComponent', { static: false })
nzTreeComponent!: NzTreeComponent;
constructor(
private modal: NzModalRef,
private fb: FormBuilder,
private http: HttpClient,
private toTree: TreeService
) {}
defaultExpandedKeys = [];
defaultSelectedKeys = [];
ngOnInit(): void {
this.getAllOrganization();
// this.nzTreeComponent.getCheckedNodeList()
}
allOrList: any;
nodes: any;
getAllOrganization() {
let params = {
ContainsChildren: true,
pageSize: 9999,
};
this.http
.get('/api/Organizations', {
params: params,
})
.subscribe((data: any) => {
data.items.forEach((element) => {
element.key = element.id;
element.title = element.name;
});
this.allOrList = data.items.filter((v) => !v.isGasStation);
this.nodes = [...this.toTree.toTree(this.allOrList)];
});
}
destroyModal(): void {
this.modal.destroy({ data: 'this the result data' });
}
}

1
src/app/system-management/organization/organization.component.html

@ -24,7 +24,6 @@
<span class="name">{{ node.title }}</span>
<span class="operation">
<span class="blue" (click)="addOr(node)" *ngIf="!node.origin.isGasStation">新增</span>
<span class="blue" (click)="changeOr(node)">修改所属机构</span>
<span class="blue" (click)="editOr(node)">编辑</span>
<span class="red" (click)="deleteOr(node)">删除</span>
</span>

46
src/app/system-management/organization/organization.component.ts

@ -22,7 +22,6 @@ import { NzFormatBeforeDropEvent } from 'ng-zorro-antd/tree';
import { Observable, of } from 'rxjs';
import { delay } from 'rxjs/operators';
import { CustomReuseStrategy } from 'src/app/CustomReuseStrategy';
import { ChangeOrComponent } from './change-or/change-or.component';
@Component({
selector: 'app-organization',
templateUrl: './organization.component.html',
@ -85,7 +84,10 @@ export class OrganizationComponent implements OnInit {
allOrList: any;
getAllOrganization() {
let OrganizationUnitId = '';
let params = {
// OrganizationUnitId: OrganizationUnitId,
// IsContainsChildren: "true"
ContainsChildren: true,
pageSize: 9999,
};
@ -191,48 +193,6 @@ export class OrganizationComponent implements OnInit {
});
const instance = modal.getContentComponent();
}
changeOr(node) {
console.log(node);
const modal = this.modal.create({
nzTitle: '修改所属组织机构',
nzContent: ChangeOrComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 500,
nzComponentParams: {
data: this.allOrList,
},
nzOnOk: async () => {
let selectedNode =
instance.nzTreeComponent.getSelectedNodeList()[0].key;
if (selectedNode) {
await new Promise((resolve) => {
let body = {
parentId: selectedNode,
isGasStation: node.origin.isGasStation,
};
this.http
.put(`/api/Organizations/${node.origin.id}`, body)
.subscribe((data) => {
resolve(data);
this.message.create('success', '修改成功!');
this.nzTreeComponent.getExpandedNodeList().forEach((item) => {
this.defaultExpandedKeys.push(item.key);
});
this.getAllOrganization();
return true;
});
});
} else {
this.message.create('warning', '请选择机构!');
return false;
}
},
});
const instance = modal.getContentComponent();
}
deleteOr(item) {
console.log(item);
if (item.origin.children && item.origin.children.length != 0) {

6
src/app/system-management/system-management.module.ts

@ -52,9 +52,6 @@ import { AnxinConfigComponent } from './host-config/anxin-config/anxin-config.co
import { DragDropModule } from '@angular/cdk/drag-drop';
import { IframeComponent } from './iframe/iframe.component';
import { WorkerTagComponent } from './analysis-of-the-host/worker-tag/worker-tag.component';
import { ChangeOrComponent } from './organization/change-or/change-or.component';
import { SimulateDataComponent } from './host-config/simulate-data/simulate-data.component';
import { NzDatePickerModule } from 'ng-zorro-antd/date-picker';
@NgModule({
declarations: [
OrganizationComponent,
@ -87,8 +84,6 @@ import { NzDatePickerModule } from 'ng-zorro-antd/date-picker';
AnxinConfigComponent,
IframeComponent,
WorkerTagComponent,
ChangeOrComponent,
SimulateDataComponent,
],
imports: [
CommonModule,
@ -115,7 +110,6 @@ import { NzDatePickerModule } from 'ng-zorro-antd/date-picker';
NzPopconfirmModule,
NzRadioModule,
DragDropModule,
NzDatePickerModule,
],
entryComponents: [
AddorComponent,

Loading…
Cancel
Save