kero
Version:
23 lines (20 loc) • 408 B
JavaScript
/**
* Module : kero app dataTable
* Author : liuyk(liuyk@yonyou.com)
* Date : 2016-07-29 09:34:01
*/
const addDataTable = function (dataTable) {
this.dataTables[dataTable.id] = dataTable
return this
}
const getDataTable = function (id) {
return this.dataTables[id]
}
const getDataTables = function () {
return this.dataTables
}
export {
addDataTable,
getDataTable,
getDataTables
}