https://help.finereport.com/doc-view-2961.html
参考这个文档就OK
选中你需要的报表块 ,点击控件设置,添加初始化后事件
是这一整段呐~~
02-JS实现决策报表报表块鼠标所在单元格行的样式.frm
setTimeout(function() {
$(".x-table.REPORT1table tr").mousemove(function() {
$(this).css("color", "red");
$(this).css("background-color", "blue");
$(this).css("font-weight", "bold");
$(this).css("text-decoration", "underline");
$(this).find("td").css("font-size", "11px");
});
$(".x-table.REPORT1table tr").mousedown(function() {
$(this).css("color", "yellow");
$(this).css("background-color", "black");
$(this).css("font-weight", "bold");
$(this).css("text-decoration", "overline");
$(this).find("td").css("font-size", "13px");
});
$(".x-table.REPORT1table tr").mouseout(function() {
$(this).css("color", "black");
$(this).css("background-color", "white");
$(this).css("font-weight", "normal");
$(this).css("text-decoration", "none");
$(this).find("td").css("font-size", "9px");
});
}, 100);