想根据偏差是正负来判断提示词,值为正的时候 增加了:25亿元 值为负的时候 减少了:25亿元 目前定义是这么写的: function(){ var a = this.category; var b = FR.remoteEvaluate("value('同期偏差',4,1,'"+this.category+"',1)")+ "亿元"; //偏差值 var c = Math.abs(FR.remoteEvaluate("value('同期偏差',4,1,'"+this.category+"',1)"))+ "亿元"; //绝对值 if(b>0){ return a+''+'增加了:'+c }else{ return a+''+'减少了:'+c } } |