51 lines
1.7 KiB
Vue
51 lines
1.7 KiB
Vue
<template>
|
|
<page-container>
|
|
<iframe
|
|
:src="iframeUrl"
|
|
frameBorder="0"
|
|
style="width: 100%; height: calc(100vh - 140px)"
|
|
></iframe>
|
|
</page-container>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { TOKEN_KEY } from '@/utils/variable';
|
|
import { LocalStore } from '@/utils/comm';
|
|
import { getAppInfo_api } from '@/api/system/apply';
|
|
|
|
const iframeUrl = ref<string>('');
|
|
const route = useRoute()
|
|
|
|
const handle = async (appId: string, url: string) => {
|
|
const res = await getAppInfo_api(appId);
|
|
let menuUrl: any = url;
|
|
if (res.status === 200) {
|
|
// console.log(res.result);
|
|
if (res.result.page.routeType === 'hash') {
|
|
menuUrl = `/%23/${url}`;
|
|
}
|
|
if (res.result.provider === 'internal-standalone') {
|
|
//{baseUrl}/api/application/sso/{appId}/login?redirect={menuUrl}
|
|
const urlStandalone = `${res.result.page.baseUrl}/api/application/sso/${appId}/login?redirect=${menuUrl}?layout=false`;
|
|
iframeUrl.value = urlStandalone;
|
|
// console.log(urlStandalone);
|
|
} else if (res.result.provider === 'internal-integrated') {
|
|
const tokenUrl = `${
|
|
res.result.page.baseUrl
|
|
}?X-Access-Token=${LocalStore.get(TOKEN_KEY)}`;
|
|
iframeUrl.value = tokenUrl;
|
|
} else {
|
|
const urlOther = `${res.result.page.baseUrl}/${menuUrl}`;
|
|
iframeUrl.value = urlOther;
|
|
}
|
|
}
|
|
};
|
|
|
|
watchEffect(() => {
|
|
const params = route.path.split('/')?.[1];
|
|
const url = route.path.split('/').slice(2).join('/');
|
|
console.log(params, url);
|
|
handle(params, url);
|
|
});
|
|
</script>
|