This commit is contained in:
daihh
2022-12-23 11:12:22 +08:00
parent 5fd7c3c9c8
commit 59beeb398c
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="box"> <div class="box">
<portal-header :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%;margin-top: 30px;" frameborder="0"></iframe> <iframe :src="url" style="width: 100%;height: 100%;margin-top: 30px;" frameborder="0"></iframe>
<portal-footer></portal-footer> <portal-footer></portal-footer>
</div> </div>
@@ -36,6 +36,7 @@ import portalFooter from "@/components/PortalFooter.vue";
<style lang="scss" > <style lang="scss" >
.box{ .box{
// width: 100%; // width: 100%;
//background: #387DF7;
height: 100%; height: 100%;
} }
</style> </style>

View File

@@ -562,7 +562,7 @@ export default {
} }
//转化为秒 //转化为秒
if(item.minute){ if(item.minute){
result.duration=parseFloat(result.minute)*60; item.duration=parseFloat(item.minute)*60;
} }
}); });