|
@@ -36,7 +36,7 @@
|
|
|
<div nz-col nzXs="24" nzSm="4" nzLg="8">
|
|
|
<nz-form-item class="nz-form-item">
|
|
|
<nz-form-label [nzSpan]="2" [nzNoColon]="true"></nz-form-label>
|
|
|
- <nz-form-control [nzSpan]="16">
|
|
|
+ <nz-form-control [nzSpan]="22" style="text-align: right;">
|
|
|
<!-- 查询 -->
|
|
|
<button nz-button nzType="primary" (click)="query()">查询</button>
|
|
|
</nz-form-control>
|
|
@@ -52,22 +52,22 @@
|
|
|
<tr>
|
|
|
<!-- <th>姓名</th> -->
|
|
|
<th>日期</th>
|
|
|
- <th>加班工时</th>
|
|
|
- <th>培训</th>
|
|
|
- <th>会议</th>
|
|
|
- <th>5S</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 nzAlign="center">加班工时</th>
|
|
|
+ <th nzAlign="center">培训</th>
|
|
|
+ <th nzAlign="center">会议</th>
|
|
|
+ <th nzAlign="center">5S</th>
|
|
|
+ <th nzAlign="center">研发</th>
|
|
|
+ <th nzAlign="center">质量</th>
|
|
|
+ <th nzAlign="center">设计</th>
|
|
|
+ <th nzAlign="center">返工</th>
|
|
|
+ <th nzAlign="center">物料</th>
|
|
|
+ <th nzAlign="center">能源</th>
|
|
|
+ <th nzAlign="center">其他</th>
|
|
|
+ <th nzAlign="center">设备</th>
|
|
|
+ <th nzAlign="center">计划</th>
|
|
|
+ <th nzAlign="center">配料</th>
|
|
|
+ <th nzAlign="center">入库</th>
|
|
|
+ <th nzAlign="center">打包</th>
|
|
|
<th style="width:15%">{{ 'table.operation' | translate }}</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -76,22 +76,22 @@
|
|
|
<!-- <td >{{item.milestoneCode}}</td> -->
|
|
|
<!-- <td>{{item.name}}</td> -->
|
|
|
<td>{{item.date}}</td>
|
|
|
- <td>{{item.overtimeHours}}</td>
|
|
|
- <td>{{item.train}}</td>
|
|
|
- <td>{{item.meeting}}</td>
|
|
|
- <td>{{item.fiveS}}</td>
|
|
|
- <td>{{item.researchAndDevelopment}}</td>
|
|
|
- <td>{{item.quality}}</td>
|
|
|
- <td>{{item.design}}</td>
|
|
|
- <td>{{item.rework}}</td>
|
|
|
- <td>{{item.materiel}}</td>
|
|
|
- <td>{{item.energy}}</td>
|
|
|
- <td>{{item.other}}</td>
|
|
|
- <td>{{item.equipment}}</td>
|
|
|
- <td>{{item.plan}}</td>
|
|
|
- <td>{{item.mixedIngredients}}</td>
|
|
|
- <td>{{item.warehousing}}</td>
|
|
|
- <td>{{item.pack}}</td>
|
|
|
+ <td nzAlign="center">{{item.overtimeHours}}</td>
|
|
|
+ <td nzAlign="center">{{item.train}}</td>
|
|
|
+ <td nzAlign="center">{{item.meeting}}</td>
|
|
|
+ <td nzAlign="center">{{item.fiveS}}</td>
|
|
|
+ <td nzAlign="center">{{item.researchAndDevelopment}}</td>
|
|
|
+ <td nzAlign="center">{{item.quality}}</td>
|
|
|
+ <td nzAlign="center">{{item.design}}</td>
|
|
|
+ <td nzAlign="center">{{item.rework}}</td>
|
|
|
+ <td nzAlign="center">{{item.materiel}}</td>
|
|
|
+ <td nzAlign="center">{{item.energy}}</td>
|
|
|
+ <td nzAlign="center">{{item.other}}</td>
|
|
|
+ <td nzAlign="center">{{item.equipment}}</td>
|
|
|
+ <td nzAlign="center">{{item.plan}}</td>
|
|
|
+ <td nzAlign="center">{{item.mixedIngredients}}</td>
|
|
|
+ <td nzAlign="center">{{item.warehousing}}</td>
|
|
|
+ <td nzAlign="center">{{item.pack}}</td>
|
|
|
<td>
|
|
|
<!-- 详情 -->
|
|
|
<a (click)="view(item)">{{ 'table.view' | translate }}</a>
|