This commit is contained in:
liushuai
2020-05-13 18:42:58 +08:00
parent 5dcb28e73e
commit decf0bf58e
8 changed files with 339 additions and 708 deletions

View File

@@ -96,9 +96,9 @@
{{ scope.row.零件数量 || '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="用库存数" width="100px">
<el-table-column align="center" label="用库存数" width="100px">
<template slot-scope="scope">
{{ scope.row.使用库存数 ? scope.row.使用库存数 : '' }}
{{ scope.row.使用库存数 ? scope.row.使用库存数 : '0' }}
</template>
</el-table-column>
<el-table-column align="center" label="采购数" width="70px">
@@ -215,6 +215,16 @@
{{ scope.row.零件数量 || '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="用滞货数" width="80px">
<template slot-scope="scope">
{{ scope.row.使用滞货数量 ? scope.row.使用滞货数量 : 0 }}
</template>
</el-table-column>
<el-table-column align="center" label="用库存数" width="80px">
<template slot-scope="scope">
{{ scope.row.使用库存数 ? scope.row.使用库存数 : 0 }}
</template>
</el-table-column>
<el-table-column align="center" label="采购数" width="70px">
<template slot-scope="scope">
{{ scope.row.数量 }}