diff --git a/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs b/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs
index 822de893b..4562bab26 100644
--- a/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs
+++ b/IRaCIS.Core.Application/Service/Common/Export/CDISCExportBaseModel.cs
@@ -368,7 +368,11 @@ public class TR_Export : TU_TR_RSBaseModel
///
/// 标准结果(数值) TRORRESU
///
- public string StandardResult_Numeric => double.TryParse(OriginalMeasurements, out _) ? OriginalMeasurements : "";
+ public string StandardResult_Numeric => double.TryParse(OriginalMeasurements, out _) ||
+ (OriginalMeasurements?.EndsWith("%") == true &&
+ double.TryParse(OriginalMeasurements.TrimEnd('%'), out _))
+ ? OriginalMeasurements
+ : "";
///
/// 标准单位 TRSTRESU
diff --git a/IRaCIS.Core.Application/Service/Common/Export/TumorExportService.cs b/IRaCIS.Core.Application/Service/Common/Export/TumorExportService.cs
index cf4f60a68..1d0efdc85 100644
--- a/IRaCIS.Core.Application/Service/Common/Export/TumorExportService.cs
+++ b/IRaCIS.Core.Application/Service/Common/Export/TumorExportService.cs
@@ -1786,6 +1786,6 @@ public class Tumor_CDISC_ExportService(IRepository t.SubjectCode).ThenBy(t => t.VisitTaskNum).ThenBy(t => t.ArmEnum).ToList();
}
}