mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-14 05:16:43 +08:00
提交
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<div class="box" :class="{ incl: url.includes('projectdetails') }">
|
<div class="box" :class="{ incl: url.includes('projectdetails') }">
|
||||||
<portal-header style="background: #387DF7;" :hideSearch="true" textColor="#ffffff"></portal-header>
|
<portal-header style="background: #387DF7;" :hideSearch="true" textColor="#ffffff"></portal-header>
|
||||||
<iframe :src="url" style="width: 100%;height: 100%;" frameborder="0" ref="iframe"></iframe>
|
<iframe :src="url" style="width: 100%;height: 100%;" frameborder="0" ref="iframe"></iframe>
|
||||||
<!-- <portal-footer></portal-footer> -->
|
<portal-footer v-if="isShowFooter"></portal-footer>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
@@ -16,7 +16,8 @@ import portalFooter from "@/components/PortalFooter.vue";
|
|||||||
data(){
|
data(){
|
||||||
return {
|
return {
|
||||||
url: "",
|
url: "",
|
||||||
boeUrl:process.env.VUE_APP_BOE_WEB_URL
|
boeUrl:process.env.VUE_APP_BOE_WEB_URL,
|
||||||
|
isShowFooter:true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@@ -24,6 +25,10 @@ import portalFooter from "@/components/PortalFooter.vue";
|
|||||||
let to = this.$route.query.to;//跳转的地址,以 /开头的地址
|
let to = this.$route.query.to;//跳转的地址,以 /开头的地址
|
||||||
let urlPre=window.location.protocol+'//'+window.location.host;
|
let urlPre=window.location.protocol+'//'+window.location.host;
|
||||||
this.url=urlPre+to
|
this.url=urlPre+to
|
||||||
|
|
||||||
|
if(to.includes('growthList')){
|
||||||
|
this.isShowFooter = false
|
||||||
|
}
|
||||||
if(params){
|
if(params){
|
||||||
this.url=this.url+'?'+params;
|
this.url=this.url+'?'+params;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user