@using System.Text.RegularExpressions @using wispro.sp.web.Components @page "/Home" @attribute [Authorize] 首页
@if (_CurrentUser != null) {
@(_CurrentUser.Name)好, 祝您一天愉快!
深圳威世博代理事务所 | 工作地:深圳
}
@if (HandlingMonth != null) {
【@HandlingMonth.Year-@HandlingMonth.Month】月数据正在处理中,您有@waitingHandleItems笔绩效数据需要处理!
}
您的总绩效数据有:@allItems
@if (context.ReviewTime.HasValue) { if (context.CreaterId == _CurrentUser.Userid) { (@context.Reviewer.Name 在 @context.ReviewTime.Value.ToFriendlyDisplay() 审核了你提交的 @(context.Item==null?"":context.Item.CaseNo) @context.Type.Name") } else { if (context.ReviewerId != _CurrentUser.Userid) { (您在 @context.CreateTime.ToFriendlyDisplay()提交的 @(context.Item==null?"":context.Item.CaseNo) @context.Type.Name,@context.Reviewer.Name 已于 @context.ReviewTime.Value.ToFriendlyDisplay() 审核完成" } } } else { if (context.CreaterId == _CurrentUser.Userid) { 您在 @context.CreateTime.ToFriendlyDisplay() 提交的 @(context.Item==null?"":context.Item.CaseNo) @context.Type.Name ,正在等待 @context.Reviewer.Name 审核!"} else { @context.Creater.Name 在 @context.CreateTime.ToFriendlyDisplay() 提交的 @(context.Item==null?"":context.Item.CaseNo) @context.Type.Name ,请您尽快 } } @*
*@