|
@@ -17,25 +17,25 @@
|
|
|
:key="tableKey"
|
|
|
style="width: 100%;"
|
|
|
v-loading="tableDataLoading">
|
|
|
- <el-table-column label="工序名称" width="200">
|
|
|
+ <el-table-column label="工序名称" width="400">
|
|
|
<template slot-scope="scope">{{ scope.row.prodProcedure.name }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="单件工时">
|
|
|
+ <el-table-column label="单件工时" width="150">
|
|
|
<template slot-scope="scope">{{ scope.row.prodProcedure.workingTime }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="总工时" width="180">
|
|
|
+ <el-table-column label="总工时" width="150">
|
|
|
<template slot-scope="scope">{{ scope.row.totalWorkingHours }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="单件工价" width="180">
|
|
|
+ <el-table-column label="单件工价" width="150">
|
|
|
<template slot-scope="scope">{{ scope.row.prodProcedure.unitPrice }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="总工价" width="180">
|
|
|
+ <el-table-column label="总工价">
|
|
|
<template slot-scope="scope">{{ scope.row.totalWages }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="质检类型" width="180">
|
|
|
+ <el-table-column label="质检类型">
|
|
|
<template slot-scope="scope">{{ scope.row.prodProcedure.checkType==0?"自检": scope.row.prodProcedure.checkType==1?"互检":"专检"}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="组员" width="180">
|
|
|
+ <el-table-column label="组员" width="150">
|
|
|
<template slot-scope="scope">{{ scope.row.teamNames }}</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|