This commit is contained in:
liushuai
2019-10-30 13:15:38 +08:00
parent e8fa4894ef
commit d3ce0baf0b
2 changed files with 1 additions and 5 deletions

View File

@@ -793,10 +793,6 @@ export default {
handleSelectionChange(val) { handleSelectionChange(val) {
this.multipleSelection = val this.multipleSelection = val
}, },
// 多选
handleSelectionChange1(val) {
this.multipleSelection1 = val
},
// 选入 // 选入
selectInto() { selectInto() {
if (this.PartType === '离线采购件') { if (this.PartType === '离线采购件') {

View File

@@ -66,7 +66,7 @@
</el-table-column> </el-table-column>
<el-table-column label="入库时间" prop="入库时间" align="center" width="145"> <el-table-column label="入库时间" prop="入库时间" align="center" width="145">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.入库时间 }} {{ scope.row.入库时间 ? scope.row.入库时间.split(' ')[0] : '-' }}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>