5 changed files with 158 additions and 2 deletions
@ -0,0 +1,67 @@ |
|||||||
|
<div class="modelbox"> |
||||||
|
|
||||||
|
<form nz-form [formGroup]="validateForm"> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-label nzSpan="7" nzFor="NodeName" |
||||||
|
><span style="color: #fff">节点名称</span> |
||||||
|
</nz-form-label> |
||||||
|
<nz-form-control> |
||||||
|
<nz-select |
||||||
|
nzAllowClear |
||||||
|
style="background-color: #fff" |
||||||
|
formControlName="NodeName" |
||||||
|
id="NodeName" |
||||||
|
nzPlaceHolder="请选择节点名称" |
||||||
|
> |
||||||
|
<nz-option *ngFor="let item of list" [nzValue]="item" [nzLabel]="item"></nz-option> |
||||||
|
|
||||||
|
</nz-select> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-label nzSpan="7" nzFor="GasStationId" |
||||||
|
><span style="color: #fff">加油站</span> |
||||||
|
</nz-form-label> |
||||||
|
<nz-form-control> |
||||||
|
<nz-select |
||||||
|
nzAllowClear |
||||||
|
style="background-color: #fff" |
||||||
|
formControlName="GasStationId" |
||||||
|
id="GasStationId" |
||||||
|
nzPlaceHolder="请选择加油站" |
||||||
|
> |
||||||
|
<nz-option *ngFor="let item of nodes" [nzValue]="item.id" [nzLabel]="item.stationName"></nz-option> |
||||||
|
|
||||||
|
</nz-select> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-label nzSpan="7" nzFor="StartTime" |
||||||
|
><span style="color: #fff">开始时间</span> |
||||||
|
</nz-form-label> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker |
||||||
|
nzShowTime |
||||||
|
nzFormat="yyyy-MM-dd HH:mm:ss" |
||||||
|
formControlName="StartTime" |
||||||
|
></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-label nzSpan="7" nzFor="EndTime" |
||||||
|
><span style="color: #fff">结束时间</span> |
||||||
|
</nz-form-label> |
||||||
|
<nz-form-control> |
||||||
|
<nz-date-picker |
||||||
|
nzShowTime |
||||||
|
nzFormat="yyyy-MM-dd HH:mm:ss" |
||||||
|
formControlName="EndTime" |
||||||
|
></nz-date-picker> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
|
||||||
|
<button nz-button nzType="primary" (click)="onClick()">提交</button> |
||||||
|
</form> |
||||||
|
<textarea style="width: 600px; height: 300px; margin-left: 10px;" *ngIf="result" [(ngModel)]="result" nz-input></textarea> |
||||||
|
<!-- <div style="width: 650px; height: 100%; background-color: #fff; margin-left: 10px;">{{result}}</div> --> |
||||||
|
</div> |
@ -0,0 +1,10 @@ |
|||||||
|
.modelbox{ |
||||||
|
margin-top: 100px; |
||||||
|
display: flex; |
||||||
|
justify-content: center; |
||||||
|
align-items: center; |
||||||
|
// flex-direction: column; |
||||||
|
} |
||||||
|
.ant-form-item-label > label{ |
||||||
|
color: #fff !important; |
||||||
|
} |
@ -0,0 +1,76 @@ |
|||||||
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
||||||
|
import { Component, OnInit, Input } from '@angular/core'; |
||||||
|
import { NzModalRef } from 'ng-zorro-antd/modal'; |
||||||
|
import { HttpClient } from '@angular/common/http'; |
||||||
|
import { TreeService } from 'src/app/service/tree.service'; |
||||||
|
import * as moment from 'moment'; |
||||||
|
|
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-down-image', |
||||||
|
templateUrl: './down-image.component.html', |
||||||
|
styleUrls: ['./down-image.component.scss'] |
||||||
|
}) |
||||||
|
export class DownImageComponent implements OnInit { |
||||||
|
validateForm!: FormGroup; |
||||||
|
constructor(private fb: FormBuilder, private http: HttpClient ,private toTree:TreeService) { } |
||||||
|
isVisible=false |
||||||
|
ngOnInit(): void { |
||||||
|
this.validateForm = this.fb.group({ |
||||||
|
StartTime: [null], |
||||||
|
EndTime:[null], |
||||||
|
NodeName:[null], |
||||||
|
GasStationId:[null] |
||||||
|
}); |
||||||
|
this.getAllOrganization() |
||||||
|
} |
||||||
|
result |
||||||
|
onClick(){ |
||||||
|
console.log(this.validateForm.value); |
||||||
|
let params={ |
||||||
|
StartTime:moment(this.validateForm.value.StartTime).format('YYYY-MM-DD HH:mm:ss'), |
||||||
|
EndTime:moment(this.validateForm.value.EndTime).format('YYYY-MM-DD HH:mm:ss'), |
||||||
|
NodeName:this.validateForm.value.NodeName, |
||||||
|
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 |
||||||
|
setTimeout(() => { |
||||||
|
this.isVisible=true |
||||||
|
}, 500); |
||||||
|
}) |
||||||
|
} |
||||||
|
list=[ |
||||||
|
'车辆进场', |
||||||
|
'设置卸油隔离区', |
||||||
|
'卸油连接静电接地', |
||||||
|
'卸油设置消防器材', |
||||||
|
'连接卸油管', |
||||||
|
'卸油中无人监卸', |
||||||
|
'拆除卸油管', |
||||||
|
'车辆离场', |
||||||
|
] |
||||||
|
|
||||||
|
nodes: any = [] |
||||||
|
async getAllOrganization() { |
||||||
|
let OrganizationUnitId = JSON.parse(sessionStorage.getItem('userdata')).organization.id |
||||||
|
let params = { |
||||||
|
OrganizationUnitId: OrganizationUnitId, |
||||||
|
MaxResultCount: 9999, |
||||||
|
IsContainsChildren: "true" |
||||||
|
} |
||||||
|
await new Promise((resolve, reject) => { |
||||||
|
this.http.get('/api/services/app/GasStation/GetAll', { |
||||||
|
params: params |
||||||
|
}).subscribe((data: any) => { |
||||||
|
this.nodes=data.result.items |
||||||
|
|
||||||
|
resolve(data) |
||||||
|
|
||||||
|
}) |
||||||
|
}) |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue