mh_custom/wtmProject.Shared/Pages/_Admin/WorkFlow/Index.razor
2024-05-17 13:43:36 +08:00

17 lines
418 B
Plaintext

@page "/_Admin/WorkFlow"
@using WalkingTec.Mvvm.Mvc.Admin.ViewModels.FrameworkUserVms;
@inherits BasePage
@attribute [ActionDescription("MenuKey.Workflow", "")]
<IFrame Src="@url" frameborder="0" style="width:100%;height:100%"></IFrame>
@code{
string url = "";
protected override void OnInitialized()
{
url = "/_workflow/inner?access_token=" + UserInfo.RemoteToken;
}
}