参考JS 实现动态选择报表背景色 https://help.fanruan.com/finereport/doc-view-2947.html
在加载结束事件,根据参数,执行这个切换语句
===========
决策报表就是初始化事件
setTimeout(function() {
if(a=="red")
{$(".content-container").css("background-color", "red");}
else if(a=="bule")
{$(".content-container").css("background-color", "bule");}
else if(a=="black")
{$(".content-container").css("background-color", "black");}
else
{$(".content-container").css("background-color", "white");}
}, 100);
