This commit is contained in:
liushuai
2020-04-18 17:41:57 +08:00
parent 1dffa2a8c3
commit 0bd9cd0189
6 changed files with 38 additions and 10 deletions

View File

@@ -227,7 +227,7 @@
</el-table-column>
<el-table-column
label="投产时间">
<template slot-scope="scope">{{ scope.row.操作时间 }}</template>
<template slot-scope="scope">{{ scope.row.操作时间 ? scope.row.操作时间.split(' ')[0] : '' }}</template>
</el-table-column>
<!--<el-table-column-->
<!--label="是否外协">-->
@@ -239,18 +239,18 @@
<!--</el-table-column>-->
<el-table-column
label="机加工开始时间">
<template slot-scope="scope">{{ scope.row.机加工开始时间 }}</template>
<template slot-scope="scope">{{ scope.row.机加工开始时间 ? scope.row.机加工开始时间.split(' ')[0] : '' }}</template>
</el-table-column>
<el-table-column
label="机加工结束时间">
<template slot-scope="scope">{{ scope.row.机加工结束时间 }}</template>
<template slot-scope="scope">{{ scope.row.机加工结束时间 ? scope.row.机加工结束时间.split(' ')[0] : '' }}</template>
</el-table-column>
<el-table-column label="操作" width="200px">
<template slot-scope="scope">
<el-button
size="mini"
fixed="rihgt"
type="primary"
type="text"
icon="el-icon-edit"
@click="handleEdit1(tableData1, scope.$index, scope.row, 'form')">编辑</el-button>
</template>