mirror of https://github.com/layui/layui
commit
1339f44975
|
@ -1,11 +1,11 @@
|
||||||
### 说明
|
### 说明
|
||||||
|
|
||||||
- 版本:在此处提供您所使用的 Layui 版本号(必填)
|
- 版本:在此处填写您所使用的 Layui 版本号(必填)
|
||||||
- 描述:在此处提供尽可能详细的问题描述和具体操作步骤等信息(必填)
|
- 描述:在此处填写尽可能详细的问题描述和具体操作步骤等信息(必填)
|
||||||
|
|
||||||
### 代码
|
### 代码
|
||||||
|
|
||||||
在此处提供与问题对应的业务代码(可选)
|
在此处填写与问题对应的业务代码(可选)
|
||||||
|
|
||||||
### 补充
|
### 补充
|
||||||
|
|
||||||
|
|
|
@ -2057,12 +2057,12 @@ layui.define(['laytpl', 'laypage', 'form', 'util'], function(exports){
|
||||||
};
|
};
|
||||||
|
|
||||||
// 行工具条单击事件
|
// 行工具条单击事件
|
||||||
that.layBody.on('click', '*[lay-event]', function(){
|
that.layBody.on('click', '*[lay-event]', function(e){
|
||||||
toolFn.call(this);
|
toolFn.call(this);
|
||||||
return false;
|
layui.stope(e);
|
||||||
}).on('dblclick', '*[lay-event]', function(){ //行工具条双击事件
|
}).on('dblclick', '*[lay-event]', function(e){ //行工具条双击事件
|
||||||
toolFn.call(this, 'toolDouble');
|
toolFn.call(this, 'toolDouble');
|
||||||
return false;
|
layui.stope(e);
|
||||||
});
|
});
|
||||||
|
|
||||||
//同步滚动条
|
//同步滚动条
|
||||||
|
|
Loading…
Reference in New Issue