mirror of https://github.com/layui/layui
修复 table `getTrHtml` 方法 tr 节点代码中的 numbers 列信息错误问题
parent
6111dba53d
commit
2b4a873d37
|
@ -1186,7 +1186,7 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
|
||||||
// 返回行节点代码
|
// 返回行节点代码
|
||||||
table.getTrHtml = function (id, data) {
|
table.getTrHtml = function (id, data) {
|
||||||
var that = getThisTable(id);
|
var that = getThisTable(id);
|
||||||
return that.getTrHtml(data);
|
return that.getTrHtml(data, null, that.page);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 数据渲染
|
// 数据渲染
|
||||||
|
|
Loading…
Reference in New Issue