Browse Source

新增 table 的合计行模板 `TOTAL_ROW` 特定字段

pull/1194/head
贤心 2 years ago
parent
commit
61637f260c
  1. 5
      src/modules/table.js

5
src/modules/table.js

@ -1340,6 +1340,7 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
if(typeof totalRow === 'string'){
return laytpl(totalRow).render($.extend({
TOTAL_NUMS: TOTAL_NUMS || totalNums[field],
TOTAL_ROW: totalRowData || {},
LAY_COL: item3
}, item3));
}
@ -2275,7 +2276,7 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
});
})();
//初始化
// 初始化
table.init = function(filter, settings){
settings = settings || {};
var that = this;
@ -2347,7 +2348,7 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
tableIns.reloadData({
data: options.data
})
});
}
});

Loading…
Cancel
Save