You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
555 B
19 lines
555 B
3 years ago
|
@*@page "/consent"
|
||
|
<h3>同意</h3>
|
||
|
|
||
|
@if (RawScopeValues != null)
|
||
|
{
|
||
|
<AntList Bordered DataSource="@RawScopeValues">
|
||
|
<Header>范围</Header>
|
||
|
<ChildContent Context="item">
|
||
|
<ListItem>
|
||
|
<Text Mark>@item</Text>
|
||
|
</ListItem>
|
||
|
</ChildContent>
|
||
|
</AntList>
|
||
|
<Checkbox Checked="@Remember">记住我的决定</Checkbox>
|
||
|
<Button Type="primary" @onclick="Yes" style="margin-top:24px;">允许</Button>
|
||
|
<Button Type="primary" @onclick="No" style="margin-top:24px;">不允许</Button>
|
||
|
}
|
||
|
|
||
|
*@
|