2 changed files with 90 additions and 57 deletions
@ -1,76 +1,108 @@ |
|||||||
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
import { FormBuilder, FormGroup, Validators } from "@angular/forms"; |
||||||
import { Component, OnInit, Input } from '@angular/core'; |
import { Component, OnInit, Input } from "@angular/core"; |
||||||
import { NzModalRef } from 'ng-zorro-antd/modal'; |
import { NzModalRef } from "ng-zorro-antd/modal"; |
||||||
import { HttpClient } from '@angular/common/http'; |
import { HttpClient } from "@angular/common/http"; |
||||||
import { TreeService } from 'src/app/service/tree.service'; |
import { TreeService } from "src/app/service/tree.service"; |
||||||
import * as moment from 'moment'; |
import * as moment from "moment"; |
||||||
|
|
||||||
|
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-down-image', |
selector: "app-down-image", |
||||||
templateUrl: './down-image.component.html', |
templateUrl: "./down-image.component.html", |
||||||
styleUrls: ['./down-image.component.scss'] |
styleUrls: ["./down-image.component.scss"], |
||||||
}) |
}) |
||||||
export class DownImageComponent implements OnInit { |
export class DownImageComponent implements OnInit { |
||||||
validateForm!: FormGroup; |
validateForm!: FormGroup; |
||||||
constructor(private fb: FormBuilder, private http: HttpClient ,private toTree:TreeService) { } |
constructor( |
||||||
isVisible=false |
private fb: FormBuilder, |
||||||
|
private http: HttpClient, |
||||||
|
private toTree: TreeService |
||||||
|
) {} |
||||||
|
isVisible = false; |
||||||
ngOnInit(): void { |
ngOnInit(): void { |
||||||
this.validateForm = this.fb.group({ |
this.validateForm = this.fb.group({ |
||||||
StartTime: [null], |
StartTime: [null], |
||||||
EndTime:[null], |
EndTime: [null], |
||||||
NodeName:[null], |
NodeName: [null], |
||||||
GasStationId:[null] |
GasStationId: [null], |
||||||
}); |
}); |
||||||
this.getAllOrganization() |
|
||||||
|
this.getAllOrganization(); |
||||||
} |
} |
||||||
result |
result; |
||||||
onClick(){ |
resultList=[]; |
||||||
|
resultString; |
||||||
|
list = [ |
||||||
|
"车辆进场", |
||||||
|
"设置卸油隔离区", |
||||||
|
"卸油连接静电接地", |
||||||
|
"卸油设置消防器材", |
||||||
|
"连接卸油管", |
||||||
|
"卸油中无人监卸", |
||||||
|
"拆除卸油管", |
||||||
|
"车辆离场", |
||||||
|
]; |
||||||
|
onClick() { |
||||||
console.log(this.validateForm.value); |
console.log(this.validateForm.value); |
||||||
let params={ |
this.resultList=[] |
||||||
StartTime:moment(this.validateForm.value.StartTime).format('YYYY-MM-DD HH:mm:ss'), |
let params = { |
||||||
EndTime:moment(this.validateForm.value.EndTime).format('YYYY-MM-DD HH:mm:ss'), |
StartTime: this.validateForm.value.StartTime |
||||||
NodeName:this.validateForm.value.NodeName, |
? moment(this.validateForm.value.StartTime).format( |
||||||
GasStationId:this.validateForm.value.GasStationId |
"YYYY-MM-DD HH:mm:ss" |
||||||
} |
) |
||||||
this.http.get('/api/services/app/OilUnloadingProcess/GetOilUnloadingImages', { params: params }).subscribe((data:any)=>{ |
: null, |
||||||
console.log(data); |
EndTime: this.validateForm.value.EndTime |
||||||
this.result=data.result |
? moment(this.validateForm.value.EndTime).format("YYYY-MM-DD HH:mm:ss") |
||||||
setTimeout(() => { |
: null, |
||||||
this.isVisible=true |
NodeName: this.validateForm.value.NodeName, |
||||||
}, 500); |
GasStationId: this.validateForm.value.GasStationId, |
||||||
}) |
}; |
||||||
|
this.http |
||||||
|
.get("/api/services/app/OilUnloadingProcess/GetOilUnloadingImages", { |
||||||
|
params: params, |
||||||
|
}) |
||||||
|
.subscribe((data: any) => { |
||||||
|
console.log(data); |
||||||
|
this.result = data.result; |
||||||
|
this.result.forEach((element:any,i) => { |
||||||
|
|
||||||
|
element.urlList.forEach((e:any,k)=>{ |
||||||
|
if (e && e.indexOf("http") === -1 && e.indexOf("/api") === -1) { |
||||||
|
this.result[i].urlList[k] = window.location.origin + "/" + e; |
||||||
|
}else if(e && e.indexOf("http") === -1 && e.indexOf("/api") != -1){ |
||||||
|
this.result[i].urlList[k] = window.location.origin + e; |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
console.log(element,i); |
||||||
|
this.resultList.push(element.station.stationName,...element.urlList) |
||||||
|
}); |
||||||
|
this.resultList = [...this.resultList]; |
||||||
|
console.log(this.resultList); |
||||||
|
|
||||||
|
this.resultString=this.resultList.join('\n') |
||||||
|
}); |
||||||
} |
} |
||||||
list=[ |
|
||||||
'车辆进场', |
|
||||||
'设置卸油隔离区', |
nodes: any = []; |
||||||
'卸油连接静电接地', |
|
||||||
'卸油设置消防器材', |
|
||||||
'连接卸油管', |
|
||||||
'卸油中无人监卸', |
|
||||||
'拆除卸油管', |
|
||||||
'车辆离场', |
|
||||||
] |
|
||||||
|
|
||||||
nodes: any = [] |
|
||||||
async getAllOrganization() { |
async getAllOrganization() { |
||||||
let OrganizationUnitId = JSON.parse(sessionStorage.getItem('userdata')).organization.id |
let OrganizationUnitId = JSON.parse(sessionStorage.getItem("userdata")) |
||||||
|
.organization.id; |
||||||
let params = { |
let params = { |
||||||
OrganizationUnitId: OrganizationUnitId, |
OrganizationUnitId: OrganizationUnitId, |
||||||
MaxResultCount: 9999, |
MaxResultCount: 9999, |
||||||
IsContainsChildren: "true" |
IsContainsChildren: "true", |
||||||
} |
}; |
||||||
await new Promise((resolve, reject) => { |
await new Promise((resolve, reject) => { |
||||||
this.http.get('/api/services/app/GasStation/GetAll', { |
this.http |
||||||
params: params |
.get("/api/services/app/GasStation/GetAll", { |
||||||
}).subscribe((data: any) => { |
params: params, |
||||||
this.nodes=data.result.items |
}) |
||||||
|
.subscribe((data: any) => { |
||||||
resolve(data) |
this.nodes = data.result.items; |
||||||
|
|
||||||
}) |
|
||||||
}) |
|
||||||
|
|
||||||
|
resolve(data); |
||||||
|
}); |
||||||
|
}); |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue