Commit 585bdb954a14641a86f96a6c2479a0c194eb8d65

Authored by zhangdaiscott
1 parent a81c2691

online下拉搜索组件,配置字典sql带'=' 提示sign失败问题处理

ant-design-vue-jeecg/src/utils/encryption/signMd5Utils.js
... ... @@ -56,7 +56,7 @@ export default class signMd5Utils {
56 56 lastpathVariable = lastpathVariable.substring(0, lastpathVariable.indexOf("?"));
57 57 }
58 58 //解决Sign 签名校验失败 #2728
59   - result["x-path-variable"] = decodeURI(lastpathVariable);
  59 + result["x-path-variable"] = decodeURIComponent(lastpathVariable);
60 60 }
61 61 if (urlArray && urlArray[1]) {
62 62 let paramString = urlArray[1], paramResult;
... ...