From 7d038c4503d630e4ce58e1f27edbda6d75dd0385 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Mon, 23 May 2022 09:41:08 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=AF=E5=BE=84=E5=88=86=E5=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs b/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs index 30173640c..7160a6a71 100644 --- a/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs +++ b/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs @@ -262,9 +262,9 @@ namespace IRaCIS.Core.Application.Contracts var fileName = file.FileName; //带目录层级,需要后端处理前端的路径 - if (fileName.Contains("/")) + if (fileName.Contains("\\")) { - fileName = fileName.Split("/").Last(); + fileName = fileName.Split("\\").Last(); }