fine-tune page styles, use iframe to load external page in navigation bar

This commit is contained in:
RockYang
2024-12-25 11:10:23 +08:00
parent 989b4a64d6
commit cbf06eea24
18 changed files with 959 additions and 1090 deletions

View File

@@ -1,32 +1,37 @@
<template>
<div class="page-iframe" v-loading="loading"
style="--el-color-primary:#47fff1"
element-loading-text="页面正在加载中..."
element-loading-background="rgba(122, 122, 122, 0.8)">
<div
class="page-iframe"
v-loading="loading"
style="--el-color-primary: #47fff1"
element-loading-text="页面正在加载中..."
element-loading-background="rgba(122, 122, 122, 0.8)"
>
<iframe :src="externalUrl" class="iframe" @load="onIframeLoad"></iframe>
</div>
</template>
<script setup>
import {useRouter} from "vue-router";
import {computed, ref} from "vue";
import { useRouter } from "vue-router";
import { computed, ref, onMounted } from "vue";
const loading = ref(true)
const router = useRouter()
const loading = ref(true);
const router = useRouter();
const externalUrl = computed(() => {
loading.value = true
return router.currentRoute.value.query.url || 'about:blank'
})
loading.value = true;
return router.currentRoute.value.query.url || "about:blank";
});
// 设置标题
document.title = router.currentRoute.value.query.title;
const onIframeLoad = () => {
loading.value = false
}
loading.value = false;
};
</script>
<style scoped lang="stylus">
.page-iframe {
width 100%
height 100%
height 100vh
overflow hidden
.iframe {