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
@@ -357,5 +357,19 @@ namespace FineUIPro.Web.CQMS.Plan
}
return "";
}
protected void imgBtnFile_Click(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(Grid1.SelectedRowID))
{
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("~/AttachFile/IndexOffice.aspx?cmd={0}|CQMSSubPlan", Grid1.SelectedRowID, "查看 -")));
PageContext.RegisterStartupScript(Window1.GetHideReference());
}
else
{
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
return;
}
}
}
}