集团主数据

This commit is contained in:
2026-05-21 15:58:21 +08:00
parent 225f83a88d
commit f91ad2ca45
14 changed files with 850 additions and 130 deletions
@@ -76,5 +76,6 @@
</TreeNode>
</TreeNode>
<TreeNode id="75AA6177-8AAD-4AA4-BC4E-3883FB095A65" Text="项目设置" NavigateUrl=""><TreeNode id="B830399C-CA36-4C23-A170-21E556D052DD" Text="项目成立" NavigateUrl="ProjectData/ProjectSet.aspx"></TreeNode>
<TreeNode id="204ACA82-15B4-4C80-AE9F-ACF25CE79999" Text="集团主数据在建项目使用情况" NavigateUrl="ProjectData/MasterProjectData.aspx"></TreeNode>
</TreeNode>
</Tree>
+7 -5
View File
@@ -1293,15 +1293,17 @@ namespace FineUIPro.Web
if (column.ColumnID != "ckbIsSelected" && column.ColumnID != "Punish" && column.ColumnID != "Del")
{
string html = row.Values[column.ColumnIndex].ToString();
if (column.ColumnID == "tfPageIndex")
if (column.ColumnID == "tfNumber")
{
html = (row.FindControl("lblNumber") as AspNet.Label).Text;
}
else if (column.ColumnID == "tfPageIndex")
{
html = (row.FindControl("lblPageIndex") as AspNet.Label).Text;
}
else if (column.ColumnID == "Count4")
else if (column.ColumnID == "tfState")
{
html = (row.FindControl("Label5") as AspNet.Label).Text;
html = (row.FindControl("lblState") as AspNet.Label).Text;
}
sb.AppendFormat("<td>{0}</td>", html);