diff --git a/src/views/production/stackManage.vue b/src/views/production/stackManage.vue index 9b3511a..afa0054 100644 --- a/src/views/production/stackManage.vue +++ b/src/views/production/stackManage.vue @@ -467,10 +467,13 @@ export default { this.$message.error("请上传文件") return; } - let params = {filePath: this.filePath}; + let params = { + filePath: this.filePath, + customerId: this.$store.getters.customerId + }; importStackOrder(params).then((res) => { if (res.code === 20000) { - this.$message.success("导入成功"); + this.$message.success("导入成功,请稍候刷新页面查看导入结果"); this.importVisible = false; this.getList(); } else {