kero
Version:
<img src="http://tinper.org/assets/images/kero.png" width="120" style="max-width:100%;"/>
22 lines (19 loc) • 409 B
JavaScript
/**
* Module : kero dataTable getParam
* Author : liuyk(liuyk@yonyou.com)
* Date : 2016-07-30 14:34:01
*/
/**
* 获取Param参数值
* @memberof DataTable
* @param {string} key Param对应的key
* @return {*} Param参数值
* @example
* datatable.getParam('param1')
*/
const getParam = function(key) {
return this.params[key]
}
export const getParamFunObj = {
getParam: getParam
}