Browse Source

[完善]更新证照 统计表格

dev
邵佳豪 3 years ago
parent
commit
dcd7d3bd37
  1. 2
      src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html
  2. 60
      src/app/pages/plan-admin/update-license-list/update-license-list.component.html
  3. 23
      src/app/pages/plan-admin/update-license-list/update-license-list.component.scss
  4. 95
      src/app/pages/plan-admin/update-license-list/update-license-list.component.ts

2
src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html

@ -4,7 +4,7 @@
<nz-form-item class="searchParams"> <nz-form-item class="searchParams">
<nz-form-control> <nz-form-control>
<nz-input-group> <nz-input-group>
<input required nz-input type="text" formControlName="name" placeholder="请输入名称" /> <input required nz-input type="text" formControlName="name" placeholder="请输入加油站名称" />
</nz-input-group> </nz-input-group>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>

60
src/app/pages/plan-admin/update-license-list/update-license-list.component.html

@ -15,7 +15,7 @@
<nz-form-item class="searchParams"> <nz-form-item class="searchParams">
<nz-form-control> <nz-form-control>
<nz-input-group> <nz-input-group>
<input required nz-input type="text" formControlName="name" placeholder="请输入名称" /> <input required nz-input type="text" formControlName="name" placeholder="请输入加油站名称" />
</nz-input-group> </nz-input-group>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@ -37,47 +37,33 @@
[nzScroll]="{ y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed"> [nzScroll]="{ y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed">
<thead> <thead>
<tr> <tr>
<th [nzWidth]="'20%'"> <th style="text-align: center">序号</th>
<div <th *ngFor="let item of headerTable.data[0]">
style="width: 20px;height: 20px;display: inline-block;margin-left: 20px;margin-right: 6px;"> {{item.name}}
</div>加油站名称
</th> </th>
<th>区域</th>
<th>所属公司</th>
<th style="text-align: center;">联系人</th>
<th style="text-align: center;">联系电话</th>
<th style="text-align: center;">油站等级</th>
<th style="text-align: center;">经营品类</th>
<th [nzWidth]="'6%'" style="text-align: center;">油机数量</th>
<th [nzWidth]="'6%'" style="text-align: center;">车道数量</th>
<th [nzWidth]="'8%'" style="text-align: center;">油罐容积</th>
<th [nzWidth]="'5%'">操作</th>
</tr> </tr>
</thead> </thead>
<tbody id="table"> <tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index"> <tr *ngFor="let item of headerTable.data;let key = index">
<td nzEllipsis [title]="item.stationName"> <td style="text-align: center">{{key + 1}}</td>
<div
style="width: 20px;height: 20px;display: inline-block;margin-left: 20px;margin-right: 6px;"> <td *ngFor="let i of item">
<img src="../../../assets/images/3d.png" alt="" *ngIf="item.hasBuildingInfo"> <ng-container *ngIf="i.value; else elseTemplate">
</div> <ng-container *ngIf="i.value.endDate; else elseTemplate">
{{item.stationName}} <span (click)="lookDetails(i.value)" style="cursor: pointer;" [ngClass]="{'green': i.value.licenseViolationType == 1,'yellow': i.value.licenseViolationType == 2,'red': i.value.licenseViolationType == 3}">
</td> {{i.value.endDate | date:"yyyy-MM-dd"}}
<td nzEllipsis [title]="item.locationName">{{item.locationName}}</td> </span>
<td nzEllipsis [title]="item.companyName">{{item.companyName}}</td> </ng-container>
<td nzEllipsis [title]="item.leaderName" style="text-align: center;">{{item.leaderName}}</td> <ng-template #elseTemplate>
<td nzEllipsis [title]="item.leaderContact" style="text-align: center;">{{item.leaderContact}}</td> {{i.value}}
<td nzEllipsis [title]="item.stationLevel" style="text-align: center;">{{item.stationLevel}}</td> </ng-template>
<td nzEllipsis [title]="item.sellVariety" style="text-align: center;">{{item.sellVariety}}</td>
<td style="text-align: center;">{{item.gasStationCount}}</td> </ng-container>
<td style="text-align: center;">{{item.laneCount}}</td> <ng-template #elseTemplate>
<td style="text-align: center;"> /
<span>{{item.tankVolume}}</span> </ng-template>
<span>{{item.tankVolume ? 'm³' : null}}</span>
</td>
<td>
<span class="look" (click)="look(item)" style="cursor:pointer;color: #36A2FF">查看</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

23
src/app/pages/plan-admin/update-license-list/update-license-list.component.scss

@ -8,22 +8,26 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
.legendbox{
.legendbox {
display: flex; display: flex;
align-items: center; align-items: center;
color: #FFFFFF; color: #FFFFFF;
flex: 1; flex: 1;
.legendItem{
.legendItem {
display: flex; display: flex;
align-items: center; align-items: center;
margin-right: 12px; margin-right: 12px;
div{
div {
width: 8px; width: 8px;
height: 8px; height: 8px;
margin-right: 3px; margin-right: 3px;
} }
} }
} }
form { form {
flex: 1; flex: 1;
height: 32px; height: 32px;
@ -60,3 +64,16 @@
align-items: center; align-items: center;
overflow: hidden; overflow: hidden;
} }
.green {
color: #4BFFD4;
}
.yellow {
color: #FFBD4B;
}
.red {
color: #FF4B65;
}

95
src/app/pages/plan-admin/update-license-list/update-license-list.component.ts

@ -1,4 +1,4 @@
import { Component, OnInit, ViewChild, ElementRef } from '@angular/core'; import { Component, OnInit, ViewChild, ElementRef, ViewContainerRef } from '@angular/core';
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 { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { FormBuilder, FormGroup, Validators } from '@angular/forms';
@ -8,6 +8,9 @@ import { Router } from '@angular/router';
import { NavChangeService } from 'src/app/service/navChange.service'; import { NavChangeService } from 'src/app/service/navChange.service';
import { fromEvent } from 'rxjs'; import { fromEvent } from 'rxjs';
import { debounceTime } from 'rxjs/operators'; import { debounceTime } from 'rxjs/operators';
import 'linqjs';
import { DetailsUpdateCategoryComponent } from '../../license/update-category/details-update-category/details-update-category.component';
import { NzModalService } from 'ng-zorro-antd/modal';
@Component({ @Component({
selector: 'app-update-license-list', selector: 'app-update-license-list',
templateUrl: './update-license-list.component.html', templateUrl: './update-license-list.component.html',
@ -16,11 +19,13 @@ import { debounceTime } from 'rxjs/operators';
export class UpdateLicenseListComponent implements OnInit { export class UpdateLicenseListComponent implements OnInit {
validateForm!: FormGroup; validateForm!: FormGroup;
constructor(private element: ElementRef, private navChangeService: NavChangeService, private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { } constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private element: ElementRef, private navChangeService: NavChangeService, private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { }
tableScrollHeight tableScrollHeight
ngOnInit(): void { ngOnInit(): void {
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px'
console.log('tableScrollHeight', this.tableScrollHeight) console.log('tableScrollHeight', this.tableScrollHeight)
@ -35,12 +40,14 @@ export class UpdateLicenseListComponent implements OnInit {
this.tableSpin = true this.tableSpin = true
} }
ngAfterViewInit(): void { ngAfterViewInit(): void {
fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe(async (event: any) => { //监听 DOM 滚动事件 fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe(async (event: any) => { //监听 DOM 滚动事件
if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) { if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) {
if (this.totalCount > this.list.length) { if (this.totalCount > this.list.length) {
console.log('需要加载数据了', event) console.log('需要加载数据了', event)
this.SkipCount = String(Number(this.SkipCount) + 50) this.SkipCount = String(Number(this.SkipCount) + 50)
await this.getGasStation() await this.getStationLicenses()
} }
} }
}); });
@ -53,7 +60,7 @@ export class UpdateLicenseListComponent implements OnInit {
} }
this.list = [] this.list = []
this.SkipCount = '0' this.SkipCount = '0'
this.getGasStation() this.getStationLicenses()
} }
resetForm(e: MouseEvent): void { resetForm(e: MouseEvent): void {
e.preventDefault(); e.preventDefault();
@ -64,25 +71,13 @@ export class UpdateLicenseListComponent implements OnInit {
} }
this.list = [] this.list = []
this.SkipCount = '0' this.SkipCount = '0'
this.getGasStation() this.getStationLicenses()
} }
look(item) { look(item) {
let gastionobj = {
organization: {
displayName: item.stationName,
isGasStation: true,
id: item.organizationUnitId
}
}
sessionStorage.setItem('userdataOfgasstation', JSON.stringify(gastionobj))
this.router.navigate(['/todaywarning/petrolStation'])
let obj = {
name: 'oilstation'
}
this.navChangeService.sendMessage(obj);//发布一条消息
} }
tableSpin: boolean tableSpin: boolean
@ -93,24 +88,43 @@ export class UpdateLicenseListComponent implements OnInit {
orId orId
list: any = [] list: any = []
async getGasStation() { async getStationLicenses() {
let params = { let params = {
StationName: this.validateForm.value.name, StationName: this.validateForm.value.name,
OrganizationUnitId: String(sessionStorage.getItem('planAdminOrid')), OrganizationUnitId: String(sessionStorage.getItem('planAdminOrid')),
IsContainsChildren: 'true', IsContainsChildren: 'true',
SkipCount: this.SkipCount, SkipCount: this.SkipCount,
MaxResultCount: this.MaxResultCount, MaxResultCount: this.MaxResultCount,
Sorting: ' BuildingBasicInfo.Id asc' // Sorting: ' BuildingBasicInfo.Id asc'
} }
this.tableSpin = true this.tableSpin = true
await new Promise((resolve, reject) => { await new Promise((resolve, reject) => {
this.http.get('/api/services/app/GasStation/GetAll', { this.http.get('/api/services/app/StationValidityLicense/GetStationLicenses', {
params: params params: params
}).subscribe((data: any) => { }).subscribe((data: any) => {
this.totalCount = data.result.totalCount this.totalCount = data.result.totalCount
this.list = this.list.concat(data.result.items); let arr = []
data.result.data.forEach(element => {
let keyArr = Object.keys(element);
let valueArr = Object.values(element);
let newElement = (keyArr as any).zip(valueArr, (a, b) => { return { name: a, value: b } });
arr.push(newElement)
});
//排序
this.list = this.list.concat(arr);
this.list = [...this.list] this.list = [...this.list]
console.log('证照表格', this.list)
this.tableSpin = false this.tableSpin = false
setTimeout(() => {
let tableHeader = this.element.nativeElement.querySelector(`.ant-table-header`).clientHeight
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader - 30) + 'px'
}, 0);
resolve(data) resolve(data)
}) })
}) })
@ -118,6 +132,41 @@ export class UpdateLicenseListComponent implements OnInit {
//父组件调用子组件方法 //父组件调用子组件方法
public onChildMethod() { public onChildMethod() {
this.getGasStation() this.getStationLicenses()
}
lookDetails(i) {
console.log(i)
let params = {
Id: i.licenseId
}
this.http.get('/api/services/app/StationValidityLicense/Get', { params: params }).subscribe(data => {
console.log('证照信息', data)
const modal = this.modal.create({
nzContent: DetailsUpdateCategoryComponent,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 450,
nzBodyStyle: {
'border': '1px solid #91CCFF',
'border-radius': '0px',
'padding': '7px',
'box-shadow': '0 0 8px 0 #fff',
'background-image': 'linear-gradient(#003665, #000f25)'
},
nzComponentParams: {
data: data
},
nzFooter: null,
nzClosable: false,
nzOnOk: async () => {
}
});
const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => { });
})
} }
} }

Loading…
Cancel
Save