Browse Source

修复 table `getTrHtml` 方法 tr 节点代码中的 numbers 列信息错误问题

pull/1273/head
sunxiaobin89 1 year ago
parent
commit
2b4a873d37
  1. 2
      src/modules/table.js

2
src/modules/table.js

@ -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…
Cancel
Save