fix:辅料库物料名称只显示name
This commit is contained in:
parent
fa1265f100
commit
519c370cee
|
@ -34,7 +34,10 @@
|
||||||
<span v-if="scope.row.material_&&scope.row.material_.number">{{ scope.row.material_.number }}</span>
|
<span v-if="scope.row.material_&&scope.row.material_.number">{{ scope.row.material_.number }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="物料名称" prop="material_name">
|
<el-table-column label="物料名称">
|
||||||
|
<template #default="scope">
|
||||||
|
<span v-if="scope.row.material_&&scope.row.material_.name">{{ scope.row.material_.name }}</span>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="货位号">
|
<el-table-column label="货位号">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
|
|
Loading…
Reference in New Issue