Compare commits
No commits in common. "f924b4985ae59ebd192638a469615f504e0aea99" and "146b0635c8879e62432a232c6729fd940ed14628" have entirely different histories.
f924b4985a
...
146b0635c8
|
|
@ -203,7 +203,7 @@ namespace IRaCIS.Api.Controllers
|
|||
|
||||
if (!await _useRepository.AnyAsync(t => t.Id == Guid.Parse(userId) && t.EmailToken == token && t.IsFirstAdd))
|
||||
{
|
||||
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "您的初始化链接已过期" : "Error!The initialization link has expired.")} ";
|
||||
decodeUrl = errorUrl + $"?lang={lang}&ErrorMessage={System.Web.HttpUtility.UrlEncode(lang == "zh" ? "您的初始化链接已过期" : "Error!The initialization link has expired. Return")} ";
|
||||
}
|
||||
|
||||
return Redirect(decodeUrl);
|
||||
|
|
|
|||
|
|
@ -177,7 +177,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
|
|||
|
||||
[MaxLength]
|
||||
public string BodyPartTypes { get; set; } = "鼻咽部|脑部|颈部|胸部|上/下腹部|盆腔|全身|其他";
|
||||
public string Modalitys { get; set; } = "CT|MRI";
|
||||
public string Modalitys { get; set; } = string.Empty;
|
||||
|
||||
[NotMapped]
|
||||
public List<string> ModalityList => Modalitys.Split('|', StringSplitOptions.RemoveEmptyEntries).Where(t => !string.IsNullOrEmpty(t)).ToList();
|
||||
|
|
|
|||
Loading…
Reference in New Issue