mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
Update index.js
This commit is contained in:
parent
56a048865d
commit
4fa07aea09
@ -110,11 +110,10 @@
|
|||||||
|
|
||||||
export function param2Obj(url) {
|
export function param2Obj(url) {
|
||||||
const search = url.split('?')[1];
|
const search = url.split('?')[1];
|
||||||
if (search !== undefined) {
|
if (!search) {
|
||||||
return JSON.parse('{"' + decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"') + '"}');
|
return {}
|
||||||
}
|
}
|
||||||
return {};
|
return JSON.parse('{"' + decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"') + '"}');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function html2Text(val) {
|
export function html2Text(val) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user