参考与数据库中数据对比校验-https://help.fanruan.com/finereport/doc-view-566.html
=====================
js的话参考
var ch = this.getValue();
//获取当前控件值
var patrn = FR.remoteEvaluate('=SQL("FRDemo","'+"select count(*) from 表 where 用户名= '"+ch+"'"+'",1,1)');
if (patrn>0) {
FR.Msg.alert("提示", "用户名重复!");
//如果不满足规则弹出提示
this.setValue("");
//清空输入值
}