|
@@ -107,7 +107,7 @@ export default {
|
|
let baseURL = this.basePath
|
|
let baseURL = this.basePath
|
|
Object.keys(query).forEach((key, index) => {
|
|
Object.keys(query).forEach((key, index) => {
|
|
if (index == 0) {
|
|
if (index == 0) {
|
|
- baseURL += '?' + key + '=' + query[key];
|
|
|
|
|
|
+ baseURL += '&' + key + '=' + query[key];
|
|
} else {
|
|
} else {
|
|
baseURL += '&' + key + '=' + query[key];
|
|
baseURL += '&' + key + '=' + query[key];
|
|
}
|
|
}
|
|
@@ -115,6 +115,7 @@ export default {
|
|
return baseURL;
|
|
return baseURL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ console.log(this.basePath)
|
|
return this.basePath
|
|
return this.basePath
|
|
}
|
|
}
|
|
|
|
|