|
@@ -27,11 +27,11 @@
|
|
|
{{ row.code }}
|
|
{{ row.code }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column label="批次号" type="code" minWidth="110">
|
|
|
|
|
|
|
+ <el-table-column label="批次号" type="code" minWidth="90">
|
|
|
<template slot-scope="{ row, $index }">
|
|
<template slot-scope="{ row, $index }">
|
|
|
{{ row.batchNo }}
|
|
{{ row.batchNo }}
|
|
|
</template>
|
|
</template>
|
|
|
- </el-table-column> -->
|
|
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="序列号" type="productSequence" minWidth="110">
|
|
<el-table-column label="序列号" type="productSequence" minWidth="110">
|
|
|
<template slot-scope="{ row, $index }">
|
|
<template slot-scope="{ row, $index }">
|
|
|
{{ row.extInfo.productSequence }}
|
|
{{ row.extInfo.productSequence }}
|
|
@@ -39,17 +39,22 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column label="名称" type="name" minWidth="110">
|
|
<el-table-column label="名称" type="name" minWidth="110">
|
|
|
<template slot-scope="{ row, $index }">
|
|
<template slot-scope="{ row, $index }">
|
|
|
- {{ row.name }} ({{
|
|
|
|
|
- row.rootCategoryLevelId == 2
|
|
|
|
|
- ? '在制品'
|
|
|
|
|
- : row.rootCategoryLevelId == 23
|
|
|
|
|
- ? '半成品'
|
|
|
|
|
- : row.rootCategoryLevelId == 9
|
|
|
|
|
- ? '产品'
|
|
|
|
|
- : item.rootCategoryLevelId == 28
|
|
|
|
|
- ? '废品'
|
|
|
|
|
- : ''
|
|
|
|
|
- }})
|
|
|
|
|
|
|
+ {{ row.name }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="物品分类" type="rootCategoryLevelId" minWidth="110">
|
|
|
|
|
+ <template slot-scope="{ row, $index }">
|
|
|
|
|
+ {{
|
|
|
|
|
+ row.rootCategoryLevelId == 2
|
|
|
|
|
+ ? '在制品'
|
|
|
|
|
+ : row.rootCategoryLevelId == 23
|
|
|
|
|
+ ? '半成品'
|
|
|
|
|
+ : row.rootCategoryLevelId == 9
|
|
|
|
|
+ ? '产品'
|
|
|
|
|
+ : item.rootCategoryLevelId == 28
|
|
|
|
|
+ ? '废品'
|
|
|
|
|
+ : ''
|
|
|
|
|
+ }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|