Browse Source

修复导出时携带params空对象导致转换错误

tags/v2.4.0
JuJu 4 years ago
parent
commit
dbeded1c09
  1. 2
      ruoyi-ui/src/utils/ruoyi.js

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

@ -158,7 +158,7 @@ export function handleTree(data, id, parentId, children, rootId) { @@ -158,7 +158,7 @@ export function handleTree(data, id, parentId, children, rootId) {
export function tansParams(params) {
let result = ''
Object.keys(params).forEach((key) => {
if (!Object.is(params[key], undefined) && !Object.is(params[key], null)) {
if (!Object.is(params[key], undefined) && !Object.is(params[key], null) && !Object.is(JSON.stringify(params[key]), '{}')) {
result += encodeURIComponent(key) + '=' + encodeURIComponent(params[key]) + '&'
}
})

Loading…
Cancel
Save