Commit c1bcbd8b authored by Xuguangxing's avatar Xuguangxing

fix

parent 230a77d8
......@@ -369,14 +369,7 @@ export function setAppTitleColor(bgcolor = '#fff') {
export function paramsParentheses(pointer) {
let params = pointer.$route.query;
const path = pointer.$route.path;
params.vccToken && delete params.vccToken;
Object.keys(params).indexOf('vccToken') > -1 && delete params.vccToken;
const paramsString = qs.stringify(params);
// for (let key in params) {
// let option = `${key}=${params[key]}`;
// tempString += `$${option}`;
// }
// if (tempString.length) {
// tempString = `${config.localHost}${path}!` + tempString.slice(1);
// }
return `${config.localHost}${path}?` + paramsString;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment