From 2ad7225afdb82177903a447c160dcf2fb3ad1628 Mon Sep 17 00:00:00 2001 From: zhangsir Date: Wed, 31 Jul 2024 19:08:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Study/manager.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Study/manager.vue b/src/components/Study/manager.vue index 1d2db5a0..3b5639af 100644 --- a/src/components/Study/manager.vue +++ b/src/components/Study/manager.vue @@ -539,8 +539,11 @@ export default { } else { const reader = new FileReader(); reader.onload = function(e) { + console.log(e,'e') const errorData = JSON.parse(e.target.result); - this.$message.error(errorData.result); + console.log(errorData,'errorData') + console.log(errorData.result,errorData.message,'errorData.result') + // this.$message.error(errorData.result); }; reader.readAsText(response.data); }