提交 c3b9601c authored 作者: 钟是志's avatar 钟是志

增加otherParams

上级 4b3d7022
......@@ -860,11 +860,15 @@ export default class TableCom extends Component {
return 'norefeshxxxxxxxxxxxxxxxxxxxx';
};
sqlUtil = (base52, json, orgCallback, sqlKey, params, callback, options = {}, otherParams = {}) => {
// console.log({
// base52, json, orgCallback, sqlKey, params, callback, options
// })
sqlUtil = (base52, json, orgCallback, sqlKey, params, p1, p2, p3) => {
let callback = p1;
let options = p2;
let otherParams;
if (p1 && typeof p1 === 'object') {
callback = p2;
otherParams = p1;
options = p3 || {};
}
//查缓存
// console.log(params && params.otherParams, JSON.stringify(params));
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论