临河任务调度
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.

Routes.razor 600B

12345678910111213
  1. @using Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.Themes.LeptonXLite
  2. @using Volo.Abp.AspNetCore.Components.Web.Theming.Routing
  3. @using Microsoft.Extensions.Options
  4. @inject IOptions<AbpRouterOptions> RouterOptions
  5. <Router AppAssembly="typeof(Program).Assembly" AdditionalAssemblies="RouterOptions.Value.AdditionalAssemblies">
  6. <Found Context="routeData">
  7. <AuthorizeRouteView RouteData="routeData" DefaultLayout="typeof(MainLayout)">
  8. <NotAuthorized>
  9. <RedirectToLogin />
  10. </NotAuthorized>
  11. </AuthorizeRouteView>
  12. </Found>
  13. </Router>