修改bug

prod
wangwei 3 years ago
parent 3c85e31c8d
commit a8030d4021

@ -51,7 +51,7 @@
<span>{{ countTypeMap[scope.row.countType] }}</span> <span>{{ countTypeMap[scope.row.countType] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="盘点人" prop="createUserName" width="200"></el-table-column> <el-table-column label="盘点人" prop="createUser" width="200"></el-table-column>
<el-table-column label="盘点时间" prop="createTime"></el-table-column> <el-table-column label="盘点时间" prop="createTime"></el-table-column>
<el-table-column label="状态" prop="status" width="120"> <el-table-column label="状态" prop="status" width="120">
<template slot-scope="scope"> <template slot-scope="scope">

@ -118,7 +118,6 @@
<el-table-column width="150" label="产品通用名" prop="productName" show-overflow-tooltip></el-table-column> <el-table-column width="150" label="产品通用名" prop="productName" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column> <el-table-column width="150" label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="批次号" prop="batchNo"></el-table-column> <el-table-column width="150" label="批次号" prop="batchNo"></el-table-column>
<el-table-column width="150" label="批次号" prop="batchNo"></el-table-column>
<el-table-column width="150" label="库存数量" prop="invNum"></el-table-column> <el-table-column width="150" label="库存数量" prop="invNum"></el-table-column>
<el-table-column width="150" label="盘点数量" prop="countNum"></el-table-column> <el-table-column width="150" label="盘点数量" prop="countNum"></el-table-column>
<el-table-column label="生产日期(yyMMdd)" prop="produceDate"></el-table-column> <el-table-column label="生产日期(yyMMdd)" prop="produceDate"></el-table-column>
@ -517,6 +516,7 @@ export default {
}); });
}, },
startCount(val) { startCount(val) {
debugger
localStorage.setItem('key', JSON.stringify(this.formData.invSpaceCode)); localStorage.setItem('key', JSON.stringify(this.formData.invSpaceCode));
this.countProductList = []; this.countProductList = [];
if (this.countType === 0) { if (this.countType === 0) {
@ -562,7 +562,7 @@ export default {
} }
} else if (this.countType === 2) { } else if (this.countType === 2) {
if (isBlank(this.formData.invCode) || isBlank(this.formData.invSpaceCode)) { if (isBlank(this.formData.invCode)) {
this.$message.warning("请先选盘点仓库"); this.$message.warning("请先选盘点仓库");
return; return;
} }

Loading…
Cancel
Save