JX.LI il y a 2 ans
Parent
commit
fe8ade50a6
2 fichiers modifiés avec 811 ajouts et 789 suppressions
  1. 7 6
      src/components/TVWall.vue
  2. 804 783
      src/components/TVWalls.vue

+ 7 - 6
src/components/TVWall.vue

@@ -1,7 +1,7 @@
 <template>
   <div>
-    <el-dialog :title="title" :visible.sync="TVWallVisible" v-if="TVWallVisible" customClass="TVWallCustomWidth"
-      @close="cancelEventLocationShow()">
+    <el-dialog :title="title + titleSuffix" :visible.sync="TVWallVisible" v-if="TVWallVisible"
+      customClass="TVWallCustomWidth" @close="cancelEventLocationShow()">
       <!--<div class="forthis" style="width: 22%; position: absolute;left: 0;z-index: 9999999999999;">-->
       <!--&lt;!&ndash; <div class="this-title">-->
       <!--<span>林场</span>-->
@@ -55,8 +55,9 @@
     components: {},
     data() {
       return {
-        title: ['365', '369', '371', '373', '372', '370'].includes(Cookies.get("deptId")) ? "电视墙" :
-          "电视墙\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000您的所有操作痕迹已被后台记录,请谨慎操作。",
+        title: "电视墙",
+        titleSuffix: "\u3000\u3000\u3000\u3000\u3000您的所有操作痕迹已被后台记录,请谨慎操作。部分摄像头处于敏感区域,已屏蔽操控权限,无法操控。",
+        titleSuffix2: "\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000您的所有操作痕迹已被后台记录,请谨慎操作。部分摄像头处于敏感区域,已屏蔽操控权限,无法操控。",
         tvListJson: [{
             'switchTab': '1',
             'treeLabels': [{
@@ -404,7 +405,7 @@
           'visible': true,
           'domId': 'dom1'
         }]
-        if(array1 != undefined && array1 != null ){
+        if (array1 != undefined && array1 != null) {
           params[0].ctrlProperty.splitNum = (array1.length == 1 ? 1 : 4)
         }
         this.setPos()
@@ -918,4 +919,4 @@
     margin-top: 100px;
     margin-left: 80px;
   }
-</style>
+</style>

Fichier diff supprimé car celui-ci est trop grand
+ 804 - 783
src/components/TVWalls.vue