可以在JS事件里面执行SQL:select count(1) from 表 where 查询条件,
然后把这个结果赋给一个参数a
做个判断,判断a是否为0,为0的话就是没有查到数据,就alert()
-------------------
查询按钮的点击事件
//点击事件
var sql="select count(*) as 总数 from dm_test where org in ('"+b+"') and cpr in ('"+y+"')";
var l=FR.remoteEvaluate('=SQL("epopr","'+sql+'",1,1)');
setTimeout(function(){
if(l=="0"){
alert("未查询到数据");
}
else{
}
},10)