| | |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="合箱上线时间" align="center" prop="boxClosingOnlineTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.boxClosingOnlineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="合箱下线时间" align="center" prop="closingBoxOfflineTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.closingBoxOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="总装上线时间" align="center" prop="finalAssemblyLaunchTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.finalAssemblyLaunchTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="总装下线时间" align="center" prop="finalAssemblyOfflineTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.finalAssemblyOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="CVT上线时间" align="center" prop="cvtLaunchTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.cvtLaunchTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="CVT下线时间" align="center" prop="cvtOfflineTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.cvtOfflineTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | |
| | | </el-table-column> |
| | | <el-table-column label="操作人" align="center" prop="operator"> |
| | | </el-table-column> |
| | | <el-table-column label="操作时间" align="center" prop="operateTime" width="160"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.operateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | </el-table> |