|
|
|
@ -161,11 +161,12 @@
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="入库数量" prop="inCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="出库数量" prop="outCount" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="结余数量" prop="reCount" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ scope.row.inCount - scope.row.outCount }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span>{{ scope.row.inCount - scope.row.outCount }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="部门" prop="deptName" v-if="showSup"
|
|
|
|
|
show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|