集团主数据

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
+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);