UNPKG

364 BJavaScriptView Raw
1/**
2 * Module : kero dataTable row simpleData
3 * Author : liuyk(liuyk@yonyou.com)
4 * Date : 2016-08-08 13:54:01
5 */
6
7const setSimpleData = function(data, status){
8 var allData = {};
9 allData.data = data;
10 allData.status = status || 'nrm';
11 this.setData(allData, true);
12 this.currentRowChange(-this.currentRowChange());
13}
14
15export {
16 setSimpleData
17}
\No newline at end of file