update 同步 ruoyi 自定义限流 新功能

This commit is contained in:
疯狂的狮子li
2021-08-17 14:34:29 +08:00
parent 896939ce4e
commit c271ffc066
2 changed files with 20 additions and 18 deletions

View File

@ -44,8 +44,8 @@ export function downLoadExcel(url, params) {
for (const key of Object.keys(value)) {
if (value[key] !== null && typeof (value[key]) !== 'undefined') {
let params = propName + '[' + key + ']';
let subPart = encodeURIComponent(params) + "="
urlparams += subPart + encodeURIComponent(value[key]) + "&";
let subPart = encodeURIComponent(params) + '=';
urlparams += subPart + encodeURIComponent(value[key]) + '&';
}
}
} else {