* [task#141579,doing,0.5h] add rowspan js.

This commit is contained in:
sunguangming
2025-04-16 17:08:55 +08:00
committed by 刘刚
parent 41f2987c46
commit 0cfee68b4a
+7
View File
@@ -0,0 +1,7 @@
window.getCellSpan = function(cell)
{
if(['id', 'name', 'module', 'method', 'createdBy', 'createdDate', 'actions'].includes(cell.col.name) && cell.row.data.rowspan)
{
return {rowSpan: cell.row.data.rowspan};
}
}