From c29a6c5cd3f232ab61d9e97df17c63cf1e4b0755 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期四, 07 十二月 2023 11:46:14 +0800 Subject: [PATCH] 分类路径注入,过滤默认属性、过滤表单不显示导致分类注入失败bug修改 --- 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