提交待办修改

This commit is contained in:
高飞 2023-08-07 16:43:53 +08:00
parent f129533d18
commit 0006fc8857
2 changed files with 11 additions and 1 deletions

View File

@ -64,7 +64,7 @@
</Items>
</f:Panel>
<f:Window ID="Window1" Title="办理" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="1200px" Height="650px">
</f:Window>
<f:Menu ID="Menu1" runat="server">

View File

@ -121,5 +121,15 @@ namespace FineUIPro.Web.SysManage
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("{0}", getData.PCUrl, "编辑 - ")));
}
}
/// <summary>
/// 关闭弹出窗
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Window1_Close(object sender, WindowCloseEventArgs e)
{
BindGrid();
}
}
}