
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 30s
- 添加学生提交管理服务 (StudentSubmissionService, StudentSubmissionDetailService) - 新增学生提交相关控制器 (StudentSubmissionController, StudentSubmissionDetailController) - 添加学生提交数据传输对象 (StudentSubmissionDetailDto, StudentSubmissionSummaryDto) - 新增学生提交相关页面组件 (StudentExamView, ExamDetailView, StudentCard等) - 添加学生提交信息卡片组件 (SubmissionInfoCard, TeacherSubmissionInfoCard) - 更新数据库迁移文件以支持提交系统
26 lines
544 B
Plaintext
26 lines
544 B
Plaintext
@inherits LayoutComponentBase
|
|
@layout AccountLayout
|
|
|
|
|
|
<MudPaper Class="d-flex flex-column flex-grow-1">
|
|
<MudDivider Class="flex-grow-0" />
|
|
<MudStack Row="true" Class="d-flex flex-grow-1">
|
|
<ManageNavMenu />
|
|
@Body
|
|
</MudStack>
|
|
</MudPaper>
|
|
|
|
|
|
@code {
|
|
[CascadingParameter]
|
|
private Task<AuthenticationState> authenticationStateTask { get; set; }
|
|
|
|
protected override void OnParametersSet()
|
|
{
|
|
if (authenticationStateTask is null)
|
|
{
|
|
// NavigationManager.Refresh(forceReload: true);
|
|
}
|
|
}
|
|
}
|