123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @using System.Text.RegularExpressions
- @using wispro.sp.web.Components
- @page "/Home"
- @attribute [Authorize]
- <PageContainer>
- <Breadcrumb>
- <Breadcrumb>
- <BreadcrumbItem><Icon Type="home" />首页</BreadcrumbItem>
- </Breadcrumb>
- </Breadcrumb>
- <Content>
- <div class="pageHeaderContent__b__0">
- <div class="avatar">
- <Avatar size="large" src="https://gw.alipayobjects.com/zos/antfincdn/XAosXuNZyF/BiazfanxmamNRoxxVxka.png" />
- </div>
- <div class="content">
- <div class="contentTitle">
- 上午好,@(_CurrentUser.Name). 祝您一天愉快!
- </div>
- <div>
- 合伙人 | 深圳威世博代理事务所 | 工作地:深圳
- </div>
- </div>
- </div>
- </Content>
- <ExtraContent>
- <div class="extraContent">
- <div class="statItem">
- <Statistic Title="@("当月绩效数据")" Value="12" />
- </div>
- <div class="statItem">
- <Statistic Title="@("本月绩效排名")" Value="3" Suffix="@("/ 280")" />
- </div>
- <div class="statItem">
- <Statistic Title="@("总绩效数据")" Value="2223" />
- </div>
- </div>
- </ExtraContent>
- <ChildContent>
- <Row Gutter="24">
- <AntDesign.Col Xl="16" Lg="24" Md="24" Sm="24" Xs="24">
- <Card BodyStyle="padding: 0px;"
- Class="activeCard"
- Title="信息动态">
- <AntList TItem="ActivitiesType"
- DataSource="@_activities"
- Class="activitiesList"
- Size="large"
- ItemLayout="ListItemLayout.Horizontal">
- <ListItem>
- <ListItemMeta Avatar="@context.User.Avatar" Description="@context.UpdatedAt.ToFriendlyDisplay()">
- <TitleTemplate>
- <span>
- <a class="username">@context.User.Name</a>
-
- <span class="event">
- @foreach (var str in Regex.Split(context.Template, @"@\{([^{}]*)\}"))
- {
- if (str == "group")
- {
- <a href="@context.Group.Link" key="@context.Group.Name">
- @context.Group.Name
- </a> }
- else if (str == "project")
- {
- <a href="@context.Project.Link" key="@context.Project.Name">
- @context.Project.Name
- </a> }
- else
- {
- @str}
- }
- </span>
- </span>
- </TitleTemplate>
- </ListItemMeta>
- </ListItem>
- </AntList>
- </Card>
- </AntDesign.Col>
- <AntDesign.Col Xl="8" Lg="24" Md="24" Sm="24" Xs="24">
- <Card Style="margin-bottom: 24px;"
- Title="绩效数据统计">
- <div class="chart">
- <wispro.sp.web.Components.Radar HasLegend="false" />
- </div>
- </Card>
- </AntDesign.Col>
- </Row>
- </ChildContent>
- </PageContainer>
|