瀏覽代碼

Merge branch 'yb11.1' into debug

yujinwen 1 周之前
父節點
當前提交
dd689c3185
共有 2 個文件被更改,包括 22 次插入9 次删除
  1. 1 1
      src/layout/Index.vue
  2. 21 8
      src/views/report/RaiDetail.vue

+ 1 - 1
src/layout/Index.vue

@@ -24,7 +24,7 @@ wx.miniProgram.getEnv(res=>{
         <Header/>
       </el-header>
       <el-container style="padding-top:60px">
-        <el-container style="display:block">
+        <el-container style="display:block" id="containerBox">
         <el-aside width="160px">
           <Aside />
         </el-aside>

+ 21 - 8
src/views/report/RaiDetail.vue

@@ -1,5 +1,5 @@
 <script setup>
-import { ref } from 'vue'
+import { ref,onMounted } from 'vue'
 import { ElMessageBox } from 'element-plus'
 import moment from 'moment';
 import 'moment/dist/locale/zh-cn'
@@ -15,6 +15,12 @@ const route = useRoute()
 const router = useRouter()
 const store = useStore()
 
+// 设置报告内容高度
+const reportContentHeight=ref('400px')
+onMounted(()=>{
+  reportContentHeight.value=$('#containerBox').innerHeight()-80+'px'
+})
+
 let reportId = ref(route.query.reportId || '')
 
 
@@ -259,7 +265,7 @@ getQRCodeImg()
   <div class="report-detail-page" v-if="info">
     <div class="hasrightaside-box">
       <div class="content-box">
-        <div class="report-box">
+        <div class="report-box" :style="{height:reportContentHeight}">
           <iframe class="iframe-wrap" :src="info.rai_report_url" frameborder="0" style="border:none"></iframe>
           <!-- 无权限 -->
           <div class="no-auth-wrap" v-if="store.state.userInfo?.is_bind === 0">
@@ -360,25 +366,32 @@ getQRCodeImg()
 
 <style lang="scss" scoped>
 .report-detail-page {
+  .report-box{
+    position: relative;
+  }
   .iframe-wrap{
     display: block;
     box-sizing: border-box;
     width: 100%;
-    height: 600px;
+    height: 100%;
   }
   .no-auth-wrap {
     text-align: center;
     color: #f3a52f;
-    margin-top: -140px;
-    padding-top: 140px;
-    min-height: 200px;
-    position: relative;
+    left: 0;
+    top: 0;
+    width: 100%;
+    height: 100%;
+    position: absolute;
     z-index: 5;
     background: linear-gradient(
       360deg,
-      #ffffff 60%,
+      #ffffff 30%,
       rgba(255, 255, 255, 0) 88%
     );
+    display: flex;
+    flex-direction: column;
+    justify-content: flex-end;
     .btn {
       width: 218px;
       margin-left: auto;