|
@@ -113,9 +113,13 @@ export default defineComponent({
|
|
|
|
|
|
if (state.sourcType === 'kt') {
|
|
|
if (url.indexOf('?') !== -1) {
|
|
|
- url += `&Authorization=${getAuth()}&source=kt`
|
|
|
+ url += `&Authorization=${encodeURI(
|
|
|
+ (getAuth() as any) || ''
|
|
|
+ )}&source=kt`
|
|
|
} else {
|
|
|
- url += `?Authorization=${getAuth()}&source=kt`
|
|
|
+ url += `?Authorization=${encodeURI(
|
|
|
+ (getAuth() as any) || ''
|
|
|
+ )}&source=kt`
|
|
|
}
|
|
|
}
|
|
|
postMessage({
|