factory_web/src/layout/components/userbar.vue

264 lines
6.3 KiB
Vue

<template>
<div class="user-bar">
<div class="panel-item hidden-sm-and-down" @click="search">
<el-icon><el-icon-search /></el-icon>
</div>
<div class="screen panel-item hidden-sm-and-down" @click="screen">
<el-icon><el-icon-full-screen /></el-icon>
</div>
<div class="msg panel-item" @click="showMsg">
<el-badge
:hidden="msgList.length == 0"
:value="msgList.length"
class="badge"
type="danger"
>
<el-icon><el-icon-chat-dot-round /></el-icon>
</el-badge>
<el-drawer
title="新消息"
v-model="msg"
:size="400"
append-to-body
destroy-on-close
>
<el-container>
<el-main class="nopadding">
<el-scrollbar>
<ul class="msg-list">
<li v-for="item in msgList" v-bind:key="item.id">
<a target="_blank">
<div class="msg-list__main">
<el-span
v-for="items in item.event_.cates_"
:key="items.id"
:label="items.name"
:value="items.id"
>事件种类:{{ items.name }}</el-span>
</div>
<div style="width:100px">
<p v-if="item.can_handle">可处理</p>
<p v-else-if="item.can_handle=='false'">不可处理</p>
</div>
<div class="msg-list__time">
<p>警报信息{{ item.event_.voice_msg }}</p>
</div>
</a>
</li>
<el-empty
v-if="msgList.length == 0"
description="暂无新消息"
:image-size="100"
></el-empty>
</ul>
</el-scrollbar>
</el-main>
<el-footer>
<el-button type="primary">消息中心</el-button>
<el-button @click="markRead">全部设为已读</el-button>
</el-footer>
</el-container>
</el-drawer>
</div>
<el-dropdown class="user panel-item" trigger="click" @command="handleUser">
<div class="user-avatar">
<el-avatar :size="30">{{ userNameF }}</el-avatar>
<label>{{ userName }}</label>
<el-icon class="el-icon--right"><el-icon-arrow-down /></el-icon>
</div>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item command="uc">帐号信息</el-dropdown-item>
<el-dropdown-item command="clearCache">清除缓存</el-dropdown-item>
<el-dropdown-item divided command="outLogin"
>退出登录</el-dropdown-item
>
</el-dropdown-menu>
</template>
</el-dropdown>
</div>
<el-dialog
v-model="searchVisible"
:width="700"
title="搜索"
custom-class="drawerBG"
center
destroy-on-close
>
<search @success="searchVisible = false"></search>
</el-dialog>
</template>
<script>
import search from "./search.vue";
export default {
components: {
search,
},
data() {
return {
userName: "",
userNameF: "",
searchVisible: false,
msg: false,
msgList: {},
};
},
created() {
var userInfo = this.$TOOL.data.get("USER_INFO");
this.userName = userInfo.username;
this.userNameF = this.userName.substring(0, 1);
this.getMyVents();
},
methods: {
getMyVents() {
this.$API.ecm.myevent.list.req({ page: 0 }).then((res) => {
this.msgList = res;
});
},
//个人信息
handleUser(command) {
if (command == "uc") {
this.$router.push({ path: "/usercenter" });
}
if (command == "cmd") {
this.$router.push({ path: "/cmd" });
}
if (command == "clearCache") {
this.$confirm(
"清除缓存会将系统初始化,包括登录状态、主题、语言设置等,是否继续?",
"提示",
{
type: "info",
}
)
.then(() => {
const loading = this.$loading();
this.$TOOL.data.clear();
this.$router.replace({ path: "/login" });
setTimeout(() => {
loading.close();
location.reload();
}, 1000);
})
.catch(() => {
//取消
});
}
if (command == "outLogin") {
this.$confirm("确认是否退出当前用户?", "提示", {
type: "warning",
confirmButtonText: "退出",
confirmButtonClass: "el-button--danger",
})
.then(() => {
this.$router.replace({ path: "/login" });
})
.catch(() => {
//取消退出
});
}
},
//全屏
screen() {
var element = document.documentElement;
this.$TOOL.screen(element);
},
//显示短消息
showMsg() {
this.msg = true;
},
//标记已读
markRead() {
this.msgList = [];
},
//搜索
search() {
this.searchVisible = true;
},
},
};
</script>
<style scoped>
.user-bar {
display: flex;
align-items: center;
height: 100%;
}
.user-bar .panel-item {
padding: 0 10px;
cursor: pointer;
height: 100%;
display: flex;
align-items: center;
}
.user-bar .panel-item i {
font-size: 16px;
}
.user-bar .panel-item:hover {
background: rgba(0, 0, 0, 0.1);
}
.user-bar .user-avatar {
height: 49px;
display: flex;
align-items: center;
}
.user-bar .user-avatar label {
display: inline-block;
margin-left: 5px;
font-size: 12px;
cursor: pointer;
}
.msg-list li {
border-top: 1px solid #eee;
}
.msg-list li a {
display: flex;
padding: 20px;
}
.msg-list li a:hover {
background: #ecf5ff;
}
.msg-list__icon {
width: 40px;
margin-right: 15px;
}
.msg-list__main {
flex: 1;
}
.msg-list__main h2 {
font-size: 15px;
font-weight: normal;
color: #333;
}
.msg-list__main p {
font-size: 12px;
color: #999;
line-height: 1.8;
margin-top: 5px;
}
.msg-list__time {
width: 100px;
text-align: right;
color: #999;
}
.dark .msg-list__main h2 {
color: #d0d0d0;
}
.dark .msg-list li {
border-top: 1px solid #363636;
}
.dark .msg-list li a:hover {
background: #383838;
}
</style>