This commit is contained in:
liushuai
2020-04-27 18:59:18 +08:00
parent 7a2db4cdf5
commit b3138148f6
9 changed files with 47 additions and 35 deletions

View File

@@ -98,7 +98,7 @@
</el-table-column>
<el-table-column align="center" label="利用库存数" width="100px">
<template slot-scope="scope">
{{ scope.row.使用库存数 || '—' }}
{{ scope.row.使用库存数 ? scope.row.使用库存数 : '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="采购数量" width="100px">
@@ -695,6 +695,7 @@ export default {
零件数量: response.data.result[i].零件数量,
数量: response.data.result[i].数量,
离线采购数量: response.data.result[i].离线采购数量,
使用库存数: response.data.result[i].使用库存数,
已到货数量: response.data.result[i].已到货数量,
离线到货数量: response.data.result[i].离线到货数量,
供应商名称: response.data.result[i].供应商名称,