|
@@ -1,6 +1,12 @@
|
|
|
<template>
|
|
|
<div style="background-color:#000928;width:100%;height:100%">
|
|
|
- <div class="header"></div>
|
|
|
+ <div class="header">
|
|
|
+ <div style="position: absolute;right: 27rem;color: rgb(63, 201, 253);top: 3rem;font-size: 9rem;">{{username+" 在线"}}</div>
|
|
|
+
|
|
|
+ <div @click="logout" style="background: #1f4a9b;width: 20rem;position: absolute;height: 20rem;text-align: center;vertical-align: middle;margin: auto;right: 0;"> <img style="width: 10rem;margin: auto;vertical-align: middle;margin-top: 5rem;" src="../assets/images/off.png" alt=""></div>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
<div class="left_content">
|
|
|
<div style="width:93%;height:100%;padding-left:5%">
|
|
|
<div :class="{active:showTable == 8 && menuShow == 0}" @click="showTable = 8;menuShow= 0" class="icon_class">
|
|
@@ -121,10 +127,10 @@
|
|
|
<img style="width:20px;vertical-align: middle;margin-right:2px" src="../assets/images/heiyan@2x.png"/>黑烟
|
|
|
</a>
|
|
|
</div>
|
|
|
- <div style="display: inline-block;margin-right:20rem;cursor: pointer" @click="logout">
|
|
|
+ <!-- <div style="display: inline-block;margin-right:20rem;cursor: pointer" @click="logout">
|
|
|
<img style="width:20px;vertical-align: middle;margin-right:2px" src="../assets/images/logout.png"/>
|
|
|
<span>注销</span>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<div class="center_content">
|
|
|
|
|
@@ -182,7 +188,6 @@ import statisticalTable from './components/table/statisticalTable.vue'
|
|
|
import logininforTable from './monitor/logininfor/index.vue'
|
|
|
import liuTable from './components/table/liuTable.vue'
|
|
|
import homeTable from './components/table/homeTable.vue'
|
|
|
-
|
|
|
import {Encrypt} from "../utils/ruoyi.js";
|
|
|
|
|
|
|
|
@@ -204,7 +209,8 @@ export default {
|
|
|
version: '3.6.0',
|
|
|
showUserMenu: false,
|
|
|
showTable: 8,
|
|
|
- menuShow: 0
|
|
|
+ menuShow: 0,
|
|
|
+ username:this.$store.getters.name
|
|
|
}
|
|
|
},
|
|
|
mounted: function () {
|