This commit is contained in:
liushuai
2020-05-22 18:09:43 +08:00
parent 69cd14dd97
commit b12d00329b
9 changed files with 47 additions and 47 deletions

View File

@@ -76,12 +76,12 @@
{{ scope.row.任务下达日期 ? scope.row.任务下达日期.split(' ')[0]:scope.row.任务下达日期 }}
</template>
</el-table-column>
<el-table-column label="规定到货日期" align="center" width="120">
<el-table-column label="计划到货" align="center" width="120">
<template slot-scope="scope">
{{ scope.row.到货日期 ? (scope.row.到货日期.split(' ')[0] !== '1900-01-01' ? scope.row.到货日期.split(' ')[0] : '') : scope.row.到货日期 }}
</template>
</el-table-column>
<el-table-column label="到货日期" align="center" width="120">
<el-table-column label="实际到货" align="center" width="120">
<template slot-scope="scope">
{{ scope.row.到货时间 ? (scope.row.到货时间.split(' ')[0] !== '1900-01-01' ? scope.row.到货时间.split(' ')[0] : '') : scope.row.到货时间 }}
</template>