2022-06-08 14:51:11 +08:00

64 lines
1.1 KiB
Vue

<template>
<div class="fullHeight whiteBlock">
<div class="inner">
<!-- <iframe :src="url+'?appKey=ld0579cbbda54db58ee17acdb26988c1&appName=智慧工地云'" id="iframe" class="Extgantt" > </iframe> -->
<iframe :src="url" id="iframe" class="Extgantt" > </iframe>
</div>
</div>
</template>
<script>
export default {
data() {
return {
url:'',
};
},
created(){
// console.log(this.$http.defaults.baseURL)
this.url = window.location.origin;
// this.url = 'http://192.168.34.66:8088';
},
};
</script>
<style lang="less" scoped>
.fullHeight{
width: 100%;
height: 100%;
}
.inner {
padding: 25px 20px;
width: 100%;
height: 100%;
box-sizing: border-box;
}
.left {
span {
margin-right: 64px;
font-size: 12px;
}
}
.square {
display: inline-block;
width: 12px;
height: 12px;
margin-right: 7px;
vertical-align: middle;
}
.square1 {
background-color: rgba(76, 135, 254, 1);
}
.square2 {
background-color: rgba(84, 207, 142, 1);
}
.square3 {
background-color: rgba(243, 208, 37, 1);
}
.Extgantt{
width: 100%;
height: 100% ;
border: none;
}
</style>