mh_custom/wtmProject.Shared/Pages/_Admin/WorkFlow/Index.razor

17 lines
418 B
Plaintext
Raw Permalink Normal View History

2024-05-16 17:30:33 +08:00
@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;
}
}