From 08158a58d6c73fec909c224480ef363be021493b Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Fri, 25 Oct 2024 16:50:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E8=A1=A8=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs index e85fb5f71..4290f27ef 100644 --- a/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs +++ b/IRaCIS.Core.Application/Service/QC/DTO/QCListViewModel.cs @@ -293,6 +293,8 @@ namespace IRaCIS.Core.Application.Contracts public string Content { get; set; } = string.Empty; + public string ContentReplaced => Content.Replace("
","").Replace("
", "").Replace("
",""); + [DictionaryTranslateAttribute("ChallengeIsClosed")] public bool IsClosed { get; set; } @@ -724,6 +726,7 @@ namespace IRaCIS.Core.Application.Contracts public string CheckResult { get; set; } = String.Empty; + public string CheckResultReplaced => CheckResult.Replace("
", "").Replace("
", "").Replace("
", ""); public List CheckDialogList { get; set; } public string CheckDialogStr => string.Join("\n\n", CheckDialogList.OrderBy(t => t.CreateTime).Select(c => c.UserName + " (" + ExportExcelConverterDate.DateTimeInternationalToString(c.CreateTime) + ") :" + c.Content));