From 2de760cc71bd40be84387766c8bda38200a2ea6f Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 07 Nov 2024 20:30:44 +0800
Subject: [PATCH] 企业详情

---
 src/views/survey/components/box/fireSource.vue      |   10 ++++++----
 src/views/survey/components/box/fireTrend.vue       |    2 ++
 src/views/companyInfo/components/box/fireSource.vue |    4 +++-
 3 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/src/views/companyInfo/components/box/fireSource.vue b/src/views/companyInfo/components/box/fireSource.vue
index 4a591ea..54d584f 100644
--- a/src/views/companyInfo/components/box/fireSource.vue
+++ b/src/views/companyInfo/components/box/fireSource.vue
@@ -102,8 +102,10 @@
 }
 
 .content-firmIntro {
-    height: 200px;
+    height: 300px;
     overflow-x: hidden;
+    // 隐藏滚动条
+    scrollbar-width: none;
 }
 
 .company-info {
diff --git a/src/views/survey/components/box/fireSource.vue b/src/views/survey/components/box/fireSource.vue
index dcfe864..6de2786 100644
--- a/src/views/survey/components/box/fireSource.vue
+++ b/src/views/survey/components/box/fireSource.vue
@@ -70,7 +70,7 @@
 
 })
 // 获取详情
-function getData () {
+function getData() {
   getDetail().then(res => {
     state.parkInfo = res.data.data
     parkInfoList.forEach(item => {
@@ -132,8 +132,10 @@
 
 .box-content-img {
   height: 360px;
-  overflow-x: hidden;
-  overflow-y: auto;
+  overflow: scroll;
+  // 隐藏滚动条
+  scrollbar-width: none;
+  // overflow-y: auto;
 }
 
 .box-content-img img {
@@ -154,7 +156,7 @@
   height: 360px;
   overflow: scroll;
   // 隐藏滚动条
-  scrollbar-width: none;
+  // scrollbar-width: none;
 
 }
 
diff --git a/src/views/survey/components/box/fireTrend.vue b/src/views/survey/components/box/fireTrend.vue
index 49cdd48..ba17b48 100644
--- a/src/views/survey/components/box/fireTrend.vue
+++ b/src/views/survey/components/box/fireTrend.vue
@@ -106,6 +106,8 @@
 .data-content-list {
   flex: 1;
   overflow-y: auto;
+  // 隐藏滚动条
+  scrollbar-width: none;
 
   .data-content-item {
     margin-top: 10px;

--
Gitblit v1.9.3