<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="tasks panel-item" @click="tasks">
|
<el-icon><el-icon-sort /></el-icon>
|
</div> -->
|
<div class="msg panel-item" @click="showMsg">
|
<el-badge :hidden="msgList.length==0" :value="msgList.length" class="badge newbadge" 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 :href="item.link" target="_blank">
|
<div class="msg-list__icon">
|
<el-badge is-dot type="danger" calss="newbadge">
|
<el-avatar :size="40" :src="item.avatar"></el-avatar>
|
</el-badge>
|
</div>
|
<div class="msg-list__main">
|
<h2>{{item.title}}</h2>
|
<p>{{item.describe}}</p>
|
</div>
|
<div class="msg-list__time">
|
<p>{{item.time}}</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="搜索" center destroy-on-close>
|
<search @success="searchVisible=false"></search>
|
</el-dialog>
|
|
<el-drawer v-model="tasksVisible" :size="450" title="任务中心" destroy-on-close>
|
<tasks></tasks>
|
</el-drawer>
|
|
</template>
|
|
<script>
|
import search from './search.vue'
|
import tasks from './tasks.vue'
|
|
export default {
|
components: {
|
search,
|
tasks
|
},
|
data(){
|
return {
|
userName: "",
|
userNameF: "",
|
searchVisible: false,
|
tasksVisible: false,
|
msg: false,
|
msgList: [
|
{
|
id: 1,
|
type: 'user',
|
avatar: "img/avatar.jpg",
|
title: "Skuya",
|
describe: "如果喜欢就点个星星支持一下哦",
|
link: "https://gitee.com/lolicode/scui",
|
time: "5分钟前"
|
},
|
{
|
id: 2,
|
type: 'user',
|
avatar: "img/avatar2.gif",
|
title: "Lolowan",
|
describe: "点进去Gitee获取最新开源版本",
|
link: "https://gitee.com/lolicode/scui",
|
time: "14分钟前"
|
},
|
{
|
id: 3,
|
type: 'system',
|
avatar: "img/logo.png",
|
title: "感谢登录SCUI Admin",
|
describe: "Vue 3.0 + Vue-Router 4.0 + ElementPlus + Axios 后台管理系统。",
|
link: "https://gitee.com/lolicode/scui",
|
time: "2020年7月24日"
|
}
|
]
|
}
|
},
|
created() {
|
var userInfo = this.$TOOL.data.get("USER_INFO");
|
this.userName = userInfo.userName;
|
this.userNameF = this.userName.substring(0,1);
|
},
|
methods: {
|
//个人信息
|
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
|
this.$router.push({path: '/notification/notice/newsmail'});
|
},
|
//标记已读
|
markRead(){
|
this.msgList = []
|
},
|
//搜索
|
search(){
|
this.searchVisible = true
|
},
|
//任务
|
tasks(){
|
this.tasksVisible = true
|
}
|
}
|
}
|
</script>
|
|
<style scoped>
|
.user-bar {display: flex;align-items: center;height: 100%;}
|
.user-bar .panel-item {padding: 0 0 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;}
|
.newbadge /deep/ .el-badge__content{top: 13px;}
|
</style>
|