|
@@ -61,6 +61,11 @@
|
|
|
<el-table-column prop="cname" label="物料名称" min-width="160" show-overflow-tooltip />
|
|
|
<el-table-column prop="brandName" label="品牌名称" min-width="120" show-overflow-tooltip />
|
|
|
<el-table-column prop="typeNo" label="规格" min-width="120" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="storeInventory" label="库存数量" min-width="120">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <span>{{ parseInt(row.storeInventory || 0) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<!-- Removed specs/description column: productDescription -->
|
|
|
<el-table-column label="预测数量" min-width="140">
|
|
|
<template #default="{ row }">
|