解决筛选中文乱码问题
This commit is contained in:
songliang 2023-02-27 11:13:11 +08:00 committed by Edward Yang
parent 32b35e32c1
commit 0be2a71a8e
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ export default {
const params = location.search.substr(1).split('&');
params.forEach(param => {
const [key, value] = param.split('=');
app.$set(app.filter, key, value);
app.$set(app.filter, key, decodeURIComponent(value));
});
}
},