demo/Pages/Dashboard/Monitor/Index.razor
2024-06-21 16:48:24 +08:00

70 lines
3.0 KiB
Plaintext

@namespace antblazorpro.Pages.Dashboard.Monitor
@page "/dashboard/monitor"
<GridContent>
<Row Gutter="24">
<AntDesign.Col Xl="18" Lg="24" Md="24" Sm="24" Xs="24" Style="margin-bottom: 24px;">
<Card>
<Row>
<AntDesign.Col Md="6" Sm="12" Xs="24">
<Statistic Title="@("Total transactions today")" Value="124543233" Suffix="@("yuan")" />
</AntDesign.Col>
<AntDesign.Col Md="6" Sm="12" Xs="24">
<Statistic Title="@("Sales target completion rate")" Value="92" Suffix="@("%")" />
</AntDesign.Col>
<AntDesign.Col Md="6" Sm="12" Xs="24">
<CountDown Title="@("Remaining time of activity")" Value="@_deadline" Format="hh:mm:ss:fff" />
</AntDesign.Col>
<AntDesign.Col Md="6" Sm="12" Xs="24">
<Statistic Title="@("Total transactions per second")" Value="234" Suffix="@("yuan")" />
</AntDesign.Col>
</Row>
<div class="mapChart">
<Map />
</div>
</Card>
</AntDesign.Col>
<AntDesign.Col Xl="6" Lg="24" Md="24" Sm="24" Xs="24" Style="margin-bottom: 24px;">
<Card Title="@("Activity forecast")">
<ActiveChart />
</Card>
<Card Title="@("Efficiency")">
@* <AntDesign.Pro.Pages.Monitor.Gauge Title="Ratio" Height="180" Percent="81" /> *@
</Card>
</AntDesign.Col>
</Row>
<Row Gutter="24">
<AntDesign.Col Xl="12" Lg="24" Sm="24" Xs="24" Style="margin-bottom: 24px;">
<Card Title="@("Proportion Per Category")" Class="pieCard">
<Row Style="padding: 16px 0;">
<AntDesign.Col Span="8">
@* <AntDesign.Pro.Pages.Monitor.Pie LineWidth="2" /> *@
</AntDesign.Col>
<AntDesign.Col Span="8">
@* <AntDesign.Pro.Pages.Monitor.Pie LineWidth="2" /> *@
</AntDesign.Col>
<AntDesign.Col Span="8">
@* <AntDesign.Pro.Pages.Monitor.Pie LineWidth="2" /> *@
</AntDesign.Col>
</Row>
</Card>
</AntDesign.Col>
<AntDesign.Col Xl="6" Lg="12" Sm="24" Xs="24" Style="margin-bottom: 24px;">
<Card Title="@("Popular Searches")">
@* <TagCloud Data="Tags" Height="161" /> *@
</Card>
</AntDesign.Col>
<AntDesign.Col Xl="6" Lg="12" Sm="24" Xs="24" Style="margin-bottom: 24px;">
<Card Title="@("Resource Surplus")">
@* <WaterWave Height="161" Title="Fund Surplus" Percent="34" /> *@
</Card>
</AntDesign.Col>
</Row>
</GridContent>
@code
{
private readonly DateTime _deadline = DateTime.Now.AddMilliseconds(1000 * 60 * 60 * 24 * 2 + 1000 * 30);
}