2023-03-14

This commit is contained in:
2023-03-14 16:06:55 +08:00
parent 7907969b51
commit 0b936deed0
7 changed files with 108 additions and 51 deletions
@@ -1,4 +1,5 @@
using BLL;
using FineUIPro.Web.ZHGL.Plan;
using System;
using System.Collections.Generic;
using System.Data;
@@ -390,5 +391,19 @@ namespace FineUIPro.Web.CQMS.Plan
{
BindGrid();
}
protected void imgBtnFile_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(Grid1.SelectedRowID))
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("~/AttachFile/IndexOffice.aspx?cmd={0}|CQMSMainPlan", Grid1.SelectedRowID, "查看 -")));
PageContext.RegisterStartupScript(Window1.GetHideReference());
}
else
{
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
return;
}
}
}
}