审核出入库单 增加冷链报告预览按钮 库存预警信息 重置之后数据错误问题

prod
wangwei 2 years ago
parent e283fee06c
commit 51dba5fdf9

@ -288,14 +288,22 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" width="220" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click="showImgViewer(scope.row)" @click="showImgViewer(scope.row)"
:disabled="scope.row.filePath == null" :disabled="scope.row.filePath == null"
>预览 >检验报告预览
</el-button
>
<el-button
type="text"
size="small"
@click="showImgViewerCold(scope.row)"
:disabled="scope.row.coldFilePath == null"
>冷链报告预览
</el-button </el-button
> >
</template> </template>

@ -336,6 +336,7 @@ export default {
}, },
queryName: null, queryName: null,
invList: [], invList: [],
invCodeList:[],
spaceList: [], spaceList: [],
ggxhList: [], ggxhList: [],
ignoreVisible: false, ignoreVisible: false,
@ -358,6 +359,7 @@ export default {
paramStatus: 1, paramStatus: 1,
page: 1, page: 1,
limit: 20, limit: 20,
listInv:this.invCodeList,
}; };
this.getList(); this.getList();
}, },
@ -394,11 +396,15 @@ export default {
getInvListByUser() getInvListByUser()
.then((response) => { .then((response) => {
this.invList = response.data || []; this.invList = response.data || [];
for(var i=0;i<response.data.length;i++){
this.invCodeList.push(response.data[i].code)
}
this.getSpaceList(); this.getSpaceList();
this.getList(); this.getList();
}) })
.catch(() => { .catch(() => {
}); });
}, },
getSpaceList() { getSpaceList() {
let params = {invWarehouseCode: this.filterQuery.invCode, status: 1}; let params = {invWarehouseCode: this.filterQuery.invCode, status: 1};
@ -525,6 +531,7 @@ export default {
this.getInvList(); this.getInvList();
// //
this.getList(); this.getList();
console.log("==="+ this.invCodeList);
}, },
}; };
</script> </script>

Loading…
Cancel
Save