|
@@ -189,17 +189,18 @@
|
|
|
|
|
|
<!-- 车间工位计划表 -->
|
|
|
<el-table v-if="ins == 6" key="7" border :data="planDataWithStationDatas" highlight-current-row v-loading="listLoading" :height="+tableHeight - 1" style="width: 100%;">
|
|
|
- <el-table-column align="center" prop="departmentCascade" label="部门名称" min-width="150" fixed="left">
|
|
|
+ <el-table-column align="center" prop="departmentCascade" label="部门名称" min-width="150" fixed="left">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.departmentCascade}}
|
|
|
+ <!-- <span class="colorText" @click="showReportDetail(scope.row,item)" >{{scope.row.departmentCascade}}</span> -->
|
|
|
+ <span class="colorText" >{{scope.row.departmentCascade}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column v-for="(item, index) in planDataWithStationHead" :key="index" :label="item" align="center" min-width="150">
|
|
|
<template slot-scope="scope">
|
|
|
- <div v-for="(items, indexs) in scope.row.deptList" :key="indexs" @click="showReportDetail(scope.row,item)" class="colorText">
|
|
|
+ <div v-for="(items, indexs) in scope.row.deptList" :key="indexs" >
|
|
|
<div v-if="items.startDate == item">
|
|
|
- 计划数:{{items.planNum}} {{items.cost}}分钟 {{items.cost}}元
|
|
|
- 实际数:{{items.nowNum}} {{items.cost}}分钟 {{items.cost}}元
|
|
|
+ 计划数:{{items.planNum}} {{items.planHour}}分钟 {{items.planCost}}元
|
|
|
+ 实际数:{{items.nowNum}} {{items.nowHour}}分钟 {{items.nowCost}}元
|
|
|
进度:{{items.progress}}
|
|
|
</div>
|
|
|
</div>
|
|
@@ -207,7 +208,9 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="totalResult" label="合计" min-width="150">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.totalResult}}
|
|
|
+ 计划数:{{scope.row.totalPlanNum}} {{scope.row.totalPlanHour}}分钟 {{scope.row.totalPlanCost}}元
|
|
|
+ 实际数:{{scope.row.totalNowNum}} {{scope.row.totalNowHour}}分钟 {{scope.row.totalNowCost}}元
|
|
|
+ 进度:{{scope.row.totalProgress}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|