@using System.Text.RegularExpressions @using wispro.sp.web.Components @page "/Home" @attribute [Authorize] 首页
上午好,@(_CurrentUser.Name). 祝您一天愉快!
合伙人 | 深圳威世博代理事务所 | 工作地:深圳
@if (context.ReviewTime.HasValue) { if (context.CreaterId == _CurrentUser.Userid) { (@context.Reviewer.Name 在 @context.ReviewTime.Value.ToFriendlyDisplay() 审核了你提交的 @context.Item.CaseNo @context.Type.Name") } else { if (context.ReviewerId != _CurrentUser.Userid) { (您在 @context.CreateTime.ToFriendlyDisplay()提交的 @context.Item.CaseNo @context.Type.Name,@context.Reviewer.Name 已于 @context.ReviewTime.Value.ToFriendlyDisplay() 审核完成" } } } else { if (context.CreaterId == _CurrentUser.Userid) { 您在 @context.CreateTime.ToFriendlyDisplay() 提交的 @context.Item.CaseNo @context.Type.Name ,正在等待 @context.Reviewer.Name 审核!"} else { @context.Creater.Name 在 @context.CreateTime.ToFriendlyDisplay() 提交的 @context.Item.CaseNo @context.Type.Name ,请您尽快 } }