@ -332,9 +332,9 @@ BI.BasicButton = BI.inherit(BI.Single, {
_doClick: function (e) {
if (this.isValid()) {
var consume = this.beforeClick(e);
var isIntercepted = this.beforeClick(e);
// 如果事件已经被消费掉了,就不再触发点击事件
if (consume) {
if (isIntercepted) {
return;
}