Form5.zip在标签中用自定义的方式 做条件控制 JS如下function(){if(this.value>1000000){var rq = FR.remoteEvaluate('=format(this.value/1000000,"#,##0.00m")');return rq;}else if(this.value>1000&&this.value<1000000){var rq = FR.remoteEvaluate('=format(this.value/1000,"#,##0.00k")');return rq;}else{var rq = FR.remoteEvaluate('=format(this.value,"#,##0.00")');return rq;}}这段JS 只运行第一段IF的时候是生效的,但是整体运行就失效了,整体运行效果如下麻烦大神帮忙看一下是哪里出了问题