参考修改单元格背景接口-https://help.fanruan.com/finereport/doc-view-4301.html
===================
setTimeout(function() {
//鼠标经过
$(".x-table.REPORT0table td").mousemove(function() {
//所在行背景色:红色
$(this).css("background-color","red");
//所在行单元格字体:18px
$(this).css("font-size","18px");
});
//鼠标点击
$(".x-table.REPORT0table td").mousedown(function() {
//所在行背景色:黄色
$(this).css("background-color","yellow");
//所在行单元格字体:18px
$(this).css("font-size","18px");
});
//鼠标离开
$(".x-table.REPORT0table td").mouseout(function() {
//所在行背景色:白色
$(this).css("background-color","white");
//所在行单元格字体:12px
$(this).css("font-size","12px");
});
}, 500);