=null 改成 = 0
len($$$) = 0
~~~
长度是数字,不能直接和null做比较的,应该是
if(len($$$)=0,"-",$$$),同时为了避免字段中存在空格,可以使用
if(len(trim($$$))=0,"-",$$$)