_g().verifyReport()本身没有返回值,需要重写这个方法,在方法里添加返回值
_g().verifyReport = function(k, n) {
var l = this.verifyButton = arguments[0];
var temp;
if (l) {
l.disable()
}
var j = this;
var m = this._doVerify(function() {
FR.Msg.toast(FR.i18nText("Fine-Engine_Verify_Verify_Success"));
l && l.enable();
temp = true;
}, function(o) {
j.popupError(o, l);
l && l.enable();
temp = false;
}, n)
return temp;
}