|
@@ -666,7 +666,7 @@ export default {
|
|
var arr = url.substr(url.indexOf('?') + 1).split('&')
|
|
var arr = url.substr(url.indexOf('?') + 1).split('&')
|
|
arr.forEach(item => {
|
|
arr.forEach(item => {
|
|
var tmp = item.split('=')
|
|
var tmp = item.split('=')
|
|
- json[tmp[0]] = tmp[1]
|
|
|
|
|
|
+ json[tmp[0]] = decodeURIComponent(tmp[1])
|
|
})
|
|
})
|
|
return json
|
|
return json
|
|
},
|
|
},
|