dedsudiyu 1 周之前
父节点
当前提交
98b7a9775a

二进制
src/assets/ZDimages/btdh_1.gif


二进制
src/assets/ZDimages/btdh_2.gif


+ 1 - 2
src/views/components/center-bottom-left.vue

@@ -62,8 +62,7 @@
         eChartsData:null,
         //定时拉取数据
         getDataTimer:null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime:30000,
+        getDataSwitchTime:300000,
         newData:{
           // 今日总进入
           todayTotalInNumber:0,

+ 1 - 2
src/views/components/center-bottom-right.vue

@@ -43,8 +43,7 @@
         },
         //定时拉取数据
         getDataTimer:null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime:30000,
+        getDataSwitchTime:300000,
       }
     },
     created(){

+ 1 - 2
src/views/components/center-center.vue

@@ -33,8 +33,7 @@
         eChartsData:null,
         //定时拉取数据
         getDataTimer:null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime:30000,
+        getDataSwitchTime:300000,
         total: 0,
       }
     },

+ 1 - 2
src/views/components/center-top.vue

@@ -151,8 +151,7 @@
         },
         //定时拉取数据
         getDataTimer:null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime:30000,
+        getDataSwitchTime:300000,
         total:0,
         rentCount:0,
         repairCount:0,

+ 1 - 2
src/views/components/left-bottom.vue

@@ -36,8 +36,7 @@
         eChartsData2:null,
         //定时拉取数据
         getDataTimer:null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime:30000,
+        getDataSwitchTime:300000,
         //图标轮播
         eChartsTimerData: null,
         eChartsCarouselTime: 6000,

+ 1 - 2
src/views/components/left-top.vue

@@ -46,8 +46,7 @@
         eChartsData2:null,
         //定时拉取数据
         getDataTimer:null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime:30000,
+        getDataSwitchTime:300000,
         newData:{
           total:0,
           teacher: {

+ 4 - 2
src/views/components/notice.vue

@@ -60,7 +60,7 @@
         mp4Url:null,
         //滚动条定时器
         scrollInterval:null,
-        scrollIntervalTime:16,
+        scrollIntervalTime:30,
         //图片数据
         //定位
         top: 0,
@@ -277,10 +277,12 @@
     overflow: hidden;
     //富文本
     .content-box{
+      color:#fff;
       flex:1;
-      width:1300px;
+      width:2400px;
       margin:20px auto;
       overflow-y: scroll;
+      overflow-x: hidden;
     }
     .content-box::-webkit-scrollbar{
       width: 6px;     /*高宽分别对应横竖滚动条的尺寸*/

+ 3 - 4
src/views/components/right.vue

@@ -57,8 +57,7 @@
         },
         //定时拉取数据
         getDataTimer: null,
-        // getDataSwitchTime:300000,
-        getDataSwitchTime: 30000,
+        getDataSwitchTime:300000,
         newData: {
           subId: '',
           deptName: '',
@@ -82,8 +81,8 @@
           fullShow: true,
           width: 876, //(宽度:非必传-默认600)
           height: 419, //(高度:非必传-默认338)
-          url: '12312312',
-          cameraIndexCode: '213123123123'
+          url: '',
+          cameraIndexCode: ''
         }
       }
     },

+ 21 - 0
src/views/components/subcomponent/titleComponent.vue

@@ -11,6 +11,9 @@
       <img class="img-1-dh" src="@/assets/ZDimages/icon_zhuanquan@1x.png">
       <p>{{titleData.name}}</p>
     </div>
+    <img class="bottom-img-box img-top" v-if="titleData.type == 'top'" src="@/assets/ZDimages/btdh_1.gif">
+    <img class="bottom-img-box img-left-right" v-if="titleData.type == 'left' || titleData.type == 'right'" src="@/assets/ZDimages/btdh_2.gif">
+    <img class="bottom-img-box img-bottom" v-if="titleData.type == 'bottom1' || titleData.type == 'bottom2'" src="@/assets/ZDimages/btdh_2.gif">
   </div>
 </template>
 <script>
@@ -42,6 +45,7 @@
 <style scoped lang="scss">
   .titleComponent{
     display: flex;
+    position: relative;
     .titleComponent-page{
       display: flex;
       height:80px;
@@ -115,5 +119,22 @@
         background-size: 100% 100%;
       }
     }
+    .bottom-img-box{
+      position: absolute;
+      left:100px;
+      top:80px;
+    }
+    .img-top{
+      width:1654px;
+      height:10px;
+    }
+    .img-left-right{
+      width:840px;
+      height:10px;
+    }
+    .img-bottom{
+      width:800px;
+      height:10px;
+    }
   }
 </style>