|
@@ -106,12 +106,24 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="position: absolute;right: 0;color: #3FC9FD;top: 28rem;font-size: 9rem;">
|
|
|
- <div style="display: inline-block;margin-right:6rem"><a target="view_window" :href="gosubsys('http://198.17.188.56:9020/door','manager','admin123',1)"><img style="width:20px;vertical-align: middle;margin-right:2px"
|
|
|
- src="../assets/images/txsb_selected@2x.png"/>光谱</a></div>
|
|
|
+ <div style="display: inline-block;margin-right:6rem">
|
|
|
+ <a target="view_window" :href="gosubsys('http://198.17.188.56:9020/door','manager','admin123',1)">
|
|
|
+ <img style="width:20px;vertical-align: middle;margin-right:2px" src="../assets/images/txsb_selected@2x.png"/>光谱
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
<div
|
|
|
- style="display: inline-block;margin-right:6rem"><a target="view_window" :href="gosubsys('http://198.17.188.2:83/index.html','js_admin','js@123456',1)"><img style="width:20px;vertical-align: middle;margin-right:2px"
|
|
|
- src="../assets/images/gpsb@2x.png"/>嗅探</a></div>
|
|
|
- <div style="display: inline-block;margin-right:20rem"><a target="view_window" :href="gosubsys('http://198.17.23.29:8090','admin','word',1)"><img style="width:20px;vertical-align: middle;margin-right:2px" src="../assets/images/heiyan@2x.png"/>黑烟</a>
|
|
|
+ style="display: inline-block;margin-right:6rem">
|
|
|
+ <a target="view_window" :href="gosubsys('http://198.17.188.2:83/index.html','js_admin','js@123456',1)">
|
|
|
+ <img style="width:20px;vertical-align: middle;margin-right:2px" src="../assets/images/gpsb@2x.png"/>嗅探
|
|
|
+ </a></div>
|
|
|
+ <div style="display: inline-block;margin-right:9rem">
|
|
|
+ <a target="view_window" :href="gosubsys('http://198.17.23.29:8090','admin','word',1)">
|
|
|
+ <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">
|
|
|
+ <img style="width:20px;vertical-align: middle;margin-right:2px" src="../assets/images/logout.png"/>
|
|
|
+ <span>注销</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="center_content">
|
|
@@ -229,6 +241,18 @@ export default {
|
|
|
clickMenu(event) {
|
|
|
console.log(1111)
|
|
|
console.log(event)
|
|
|
+ },
|
|
|
+ async logout() {
|
|
|
+ this.$confirm('确定注销并退出系统吗?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.$store.dispatch('LogOut').then(() => {
|
|
|
+ location.href = '/home';
|
|
|
+ })
|
|
|
+ }).catch(() => {
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
}
|