update 优化响应信息主体,避免 string 类型的 data 数据返回到 msg 字段中

This commit is contained in:
David Wei 2023-10-04 21:08:59 +08:00
parent 0b2bbd71a1
commit ef92c1514d

View File

@ -522,7 +522,7 @@ const handleFileSuccess = (response: any, file: UploadFile) => {
upload.open = false;
upload.isUploading = false;
uploadRef.value?.handleRemove(file);
ElMessageBox.alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
ElMessageBox.alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.data + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
getList();
}