33 lines
858 B
Vue
Raw Normal View History

2021-02-14 23:01:21 +08:00
<template>
<div v-loading="loading" :style="'height:'+ height">
<iframe ref="iframe" :src="src" frameborder="no" style="width: 100%;height: 100%" scrolling="auto" />
2021-02-14 23:01:21 +08:00
</div>
</template>
<script>
export default {
name: "Server",
data() {
return {
src: process.env.VUE_APP_BASE_API + "/admin",
height: document.documentElement.clientHeight - 94.5 + "px;",
loading: true
2021-02-14 23:01:21 +08:00
};
},
mounted: function() {
const that = this;
setTimeout(() => {
// 模拟点击【应用】菜单
that.$refs["iframe"].contentWindow.document.getElementsByClassName('navbar-item')[2].click();
// 取消加载中
this.loading = false;
}, 230);
// 大小变化的监听
window.onresize = function temp() {
that.height = document.documentElement.clientHeight - 94.5 + "px;";
};
2021-02-14 23:01:21 +08:00
}
};
</script>