From a7b6469223bb55e4e4a8cac2bfe86c9ba827bd8e Mon Sep 17 00:00:00 2001 From: x_z Date: Fri, 14 Oct 2022 00:13:37 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AF=BC=E5=85=A5=E5=BB=BA=E5=9E=9B=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E6=B7=BB=E5=8A=A0=E5=AE=A2=E6=88=B7ID=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/production/stackManage.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 {