Browse Source

[完善]完善数字站点表格

dev
邵佳豪 3 years ago
parent
commit
44ca86612a
  1. 38
      src/app/pages/plan-admin/plan-admin.component.html

38
src/app/pages/plan-admin/plan-admin.component.html

@ -53,34 +53,40 @@
<div class="tablebox" id="tablebox"> <div class="tablebox" id="tablebox">
<nz-table [nzPageSize]='999' #headerTable [nzData]="list" [nzShowPagination]="false" <nz-table [nzPageSize]='999' #headerTable [nzData]="list" [nzShowPagination]="false"
[nzScroll]="{ y:tableheight() }" [nzNoResult]='null'> [nzScroll]="{ y:tableheight() }" [nzNoResult]='null' nzTableLayout="fixed">
<thead> <thead>
<tr> <tr>
<th></th> <th [nzWidth]="'20%'">
<th>加油站名称</th> <div style="width: 20px;height: 20px;display: inline-block;margin-left: 20px;margin-right: 6px;">
</div>加油站名称
</th>
<th>区域</th> <th>区域</th>
<th>所属公司</th> <th>所属公司</th>
<th>联系人</th> <th>联系人</th>
<th>联系电话</th> <th>联系电话</th>
<th>油站等级</th> <th>油站等级</th>
<th>经营品类</th> <th>经营品类</th>
<th>油机数量</th> <th [nzWidth]="'6%'">油机数量</th>
<th>车道数量</th> <th [nzWidth]="'6%'">车道数量</th>
<th>油罐容积</th> <th [nzWidth]="'6%'">油罐容积</th>
<th>操作</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">
<th style="text-align: right;box-sizing: border-box;padding-right: 8px;"><img <th nzEllipsis [title]="item.stationName">
src="../../../assets/images/3d.png" alt="" *ngIf="item.hasBuildingInfo"></th> <div style="width: 20px;height: 20px;display: inline-block;margin-left: 20px;margin-right: 6px;">
<th>{{item.stationName}}</th> <img src="../../../assets/images/3d.png" alt="" *ngIf="item.hasBuildingInfo">
<th>{{item.locationName}}</th> </div>
<th>{{item.companyName}}</th> {{item.stationName}}
<th>{{item.leaderName}}</th> </th>
<th>{{item.leaderContact}}</th> <th nzEllipsis [title]="item.locationName">{{item.locationName}}</th>
<th>{{item.stationLevel}}</th> <th nzEllipsis [title]="item.companyName">{{item.companyName}}</th>
<th>{{item.sellVariety}}</th> <th nzEllipsis [title]="item.leaderName">{{item.leaderName}}</th>
<th nzEllipsis [title]="item.leaderContact">{{item.leaderContact}}</th>
<th nzEllipsis [title]="item.stationLevel">{{item.stationLevel}}</th>
<th nzEllipsis [title]="item.sellVariety">{{item.sellVariety}}</th>
<th>{{item.gasStationCount}}</th> <th>{{item.gasStationCount}}</th>
<th>{{item.laneCount}}</th> <th>{{item.laneCount}}</th>
<th>{{item.tankVolume}}</th> <th>{{item.tankVolume}}</th>

Loading…
Cancel
Save