Browse Source

恢复tansParams方法

tags/v3.0.0
RuoYi 4 years ago
parent
commit
1624a63cff
  1. 14
      ruoyi-ui/src/utils/ruoyi.js

14
ruoyi-ui/src/utils/ruoyi.js

@ -173,3 +173,17 @@ export function handleTree(data, id, parentId, children) { @@ -173,3 +173,17 @@ export function handleTree(data, id, parentId, children) {
}
return tree;
}
/**
* 参数处理
* @param {*} params 参数
*/
export function tansParams(params) {
let result = ''
Object.keys(params).forEach((key) => {
if (!Object.is(params[key], undefined) && !Object.is(params[key], null) && !Object.is(JSON.stringify(params[key]), '{}')) {
result += encodeURIComponent(key) + '=' + encodeURIComponent(params[key]) + '&'
}
})
return result
}

Loading…
Cancel
Save