From 0a1e8735df28380727ff3cbabc73c71b1fdee0e1 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 06 十二月 2023 22:22:49 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue index 80377c8..4157faa 100644 --- a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue +++ b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue @@ -580,11 +580,11 @@ }).then(res => { let reader = new FileReader(); reader.readAsText(res.data) - reader.onload = (result) =>{ + reader.onload = (result) => { try { let resData = JSON.parse(result.target.result); // 瑙f瀽瀵硅薄鎴愬姛 if (!resData.success) { - console.log("resData",resData) + console.log("resData", resData) this.$message.error(resData.msg); this.isLoading = false; } -- Gitblit v1.9.3