longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<template>
  <flex-layout class="page-home" no-bg ref="homeRoot">
    <page-header
      slot="header"
      :class="{ 'show-drawer': drawer }"
      @handle-message="handleMessage"
    ></page-header>
    <div ref="homeContent" class="page-home-content" :class="{ 'show-drawer': drawer }">
      <div class="home-content-mask" v-if="showMash"></div>
      <div class="tab-menu-left" @click="drawer = true">
        <i class="el-icon-s-operation"></i>
      </div>
      <el-tabs
        v-model="acTabs"
        type="border-card"
        @tab-remove="removeTab"
        class="no-selected full-height add-m-menu flex-layout el-home-tabs"
      >
        <el-tab-pane
          v-for="item in tabs"
          :key="item.name"
          :label="item.label"
          :name="item.name"
          :closable="item.closable"
        >
          <iframe
            :name="item.name"
            :src="item.src"
            width="100%"
            height="100%"
            frameborder="0"
            scrolling="no"
          ></iframe>
        </el-tab-pane>
      </el-tabs>
    </div>
    <div slot="footer">
      <marqueeLeft :sendVal="newItems" v-if="showMarqueeLeft"></marqueeLeft>
      <div class="no-warning-msg" v-else>最近24小时内无告警</div>
    </div>
    <el-drawer
      title="我是标题"
      :withHeader="false"
      :visible.sync="drawer"
      size="360px"
      direction="ltr"
    >
      <page-menu :ac-tabs="acTabs" @select="changeTab"></page-menu>
    </el-drawer>
    <hdw-dialog :visible.sync="hdwDialog">
      <pages-three-home v-if="hdwDialog" :areas="areas"></pages-three-home>
    </hdw-dialog>
  </flex-layout>
</template>
 
<script>
import PageHeader from "../components/PageHeader.vue";
import PageMenu from "../components/PageMenu.vue";
import HdwDialog from "@/components/HdwDialog";
import PagesThreeHome from "@/pages/dataTest/threeHome";
import marqueeLeft from "@/components/marqueeLeft";
import getPageMenu from "@/assets/js/tools/getPageMenu";
import { checkUserLogin, getAllRealAlarm } from "@/assets/js/api";
import {Timeout} from "@/assets/js/tools";
import config from "@/assets/js/config";
 
let timer;
export default {
  components: {
    PageHeader,
    PageMenu,
    PagesThreeHome,
    HdwDialog,
    marqueeLeft,
  },
  data() {
    let menus = getPageMenu();
    let tabs = [menus[0]];
    let acTabs = "index";
    let pageInfo = this.$store.getters["user/pageName"];
    if (this.$store.state.user.autoLogin) {
      let addMenu = "";
 
      // 校验菜单
      if (menus[pageInfo.m] && menus[pageInfo.m].childrens[pageInfo.c]) {
        addMenu = menus[pageInfo.m].childrens[pageInfo.c];
      }
 
      // 添加的菜单
      if (addMenu) {
        acTabs = addMenu.name;
        tabs.push(addMenu);
      }
    }
    return {
      config: config,
      newItems: [],
      acTabs: acTabs,
      tabs: tabs,
      drawer: false,
      timer: "",
      timer2: new Timeout(),
      realAlarmTime: new Timeout(),
      hdwDialog: false,
      areas: [],
      socket: "",
      path: "ws://localhost:8919/fg/websocket/loginCheck",
      lastTime: new Date().getTime(),
      showMash: false,
      errorFlag: 0,   // 错误计数
    };
  },
  watch: {
    acTabs: {
      handler(name) {
        // 监测tab激活的位置
        // 存储激活的sessionStorage
        sessionStorage.setItem("acTabs", name);
      },
      immediate: true,
    },
    "$store.state.ukey.isIn"(isIn) {
      if (!isIn) {
        this.$router.push("/login");
      }
    },
  },
  methods: {
    getAllRealAlarm() {
      getAllRealAlarm()
        .then((res) => {
          let resData = JSON.parse(res.data.result);
          this.newItems = resData.data;
        })
        .catch((err) => {
          console.log(err);
        });
    },
    removeTab(targetName) {
      let tabs = this.tabs;
      let activeName = this.acTabs;
 
      if (activeName === targetName) {
        tabs.forEach((tab, index) => {
          if (tab.name === targetName) {
            let nextTab = tabs[index + 1] || tabs[index - 1];
            if (nextTab) {
              activeName = nextTab.name;
            }
          }
        });
      }
 
      this.acTabs = activeName;
      this.tabs = tabs.filter((tab) => tab.name !== targetName);
    },
    changeTab(menu) {
      let tabs = this.tabs;
      // 检测name是否已经存在tabs内
      let notIn = true;
      tabs.forEach((item) => {
        if (item.name == menu.name) {
          notIn = false;
        }
      });
      // 不在, 添加menu到tabs中
      if (notIn) {
        tabs.push(menu);
      }
 
      // 设置激活的导航
      this.acTabs = menu.name;
    },
    // 处理从子iframe中获取到的指令
    handleMessage(msg) {
      switch (msg.cmd) {
        // 同步页面的指令
        case "syncPage":
          this.syncPage(msg.params);
          break;
        case "showDialog":
          this.hdwDialog = false;
          this.$nextTick(() => {
            this.showDialog(msg.params);
          });
          break;
      }
    },
    // 同步页面
    syncPage(params) {
      let tabs = this.tabs;
      let menu = params.pageInfo;
      // 检测name是否已经存在tabs内
      let notIn = true;
      let index = -1;
      tabs.forEach((item, flag) => {
        // 页面是否已经打开
        if (item.name == menu.name) {
          notIn = false;
          index = flag;
        }
      });
      // 不在, 添加menu到tabs中
      if (notIn) {
        tabs.push(menu);
      } else {
        // 页面已存在,并刷新页面
        tabs.splice(index, 1);
        this.$nextTick(() => {
          tabs.splice(index, 0, menu);
        });
      }
 
      // 设置激活的导航
      this.acTabs = menu.name;
    },
    showDialog(params) {
      switch (params.dialog) {
        case "hdwDialog":
          this.areas = params.pageInfo;
          this.hdwDialog = true;
          break;
      }
    },
    checkUserLogin() {
      checkUserLogin()
        .then((res) => {
          let rs = JSON.parse(res.data.result);
          this.errorFlag = 0;
          if (rs.code === 1) {
            alert(rs.msg);
            this.$router.push("/login");
          } else {
            clearTimeout(this.timer);
            this.timer = setTimeout(() => {
              this.checkUserLogin();
            }, 5000);
          }
        })
        .catch((error) => {
          if (this.errorFlag == 3) {
            alert("服务器请求异常,请重新登录!");
            this.$router.push("/login");
          }
          this.errorFlag++;
          clearTimeout(this.timer);
          this.timer = setTimeout(() => {
            this.checkUserLogin();
          }, 5000);
        });
    },
    changeLastTime() {
      this.lastTime = new Date().getTime()
    },
    listenLastTime() {
      this.timer2.start(()=>{
        let lastTime = this.lastTime;
        let currentTime = new Date().getTime(); //更新当前时间
        let timeOut = 30 * 60 * 1000; //设置超时时间: 30分
        if(currentTime - lastTime > timeOut){ //判断是否超时
          alert("长时间未操作,自动退出!");
          this.$router.push("/login");
        }else if(currentTime - lastTime > timeOut/2) {
          this.showMash = true;
          this.timer2.open();
        }else{
          this.showMash = false;
          this.timer2.open();
        }
      }, 1000);
 
    },
    startSearchRealTime() {
      this.realAlarmTime.start(()=>{
        this.$axios.all([
            this.getAllRealAlarm(),
        ]).then(res=>{
            this.realAlarmTime.open();
        }).catch(error=>{
          this.realAlarmTime.open();
        });
      }, 1000);
    }
  },
  computed: {
    showMarqueeLeft() {
      return typeof this.newItems == "undefined" || this.newItems.length == 0
        ? false
        : true;
    },
  },
  mounted() {
    // 启动用户互斥登录模块
    this.checkUserLogin();
    // 监听来自子iframe的指令
    window.addEventListener("message", (msg) => {
      // 处理数据
      this.handleMessage(msg.data);
    });
    this.startSearchRealTime();
 
    // 开启长时间不操作自动退出
    if(this.config.autoExit.value) {
      // 开启监控鼠标移动
      window.addEventListener("mousemove", this.changeLastTime);
      // 启动监控
      this.listenLastTime();
    }
 
  },
  destroyed() {
    clearTimeout(this.timer);
    this.realAlarmTime.stop();
    // 开启长时间不操作自动退出
    if(this.config.autoExit.value) {
      // 移除监控鼠标移动
      window.removeEventListener("mousemove", this.changeLastTime);
      this.timer2.stop();
    }
  },
};
</script>
 
<style scoped lang="less">
.flex-layout {
  display: flex;
  height: 100%;
  box-sizing: border-box;
}
 
.page-home-content {
  position: relative;
  height: 100%;
}
 
.tab-menu-left {
  position: absolute;
  box-sizing: border-box;
  width: 48px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
}
 
.no-selected {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
 
.show-drawer {
  transform: translateX(360px);
}
.no-warning-msg {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.3rem;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.home-content-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
</style>