| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- <template>
- <div class="navbar">
- <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container"
- @toggleClick="toggleSideBar" />
- <breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
- <div class="right-menu">
- <template v-if="device !== 'mobile'">
- <div @click="openMsg()" class="right-menu-item hover-effect">
- <el-badge v-if="msgCount > 0" :value="msgCount" :max="99" class="dot">
- </el-badge>
- <div class="msg" @click="openMsg()"><i class="el-icon-message-solid"></i> </div>
- </div>
- <!-- <search id="header-search" class="right-menu-item" /> -->
- <div class="right-menu-item">{{ doctor.doctorName }}</div>
- <screenfull id="screenfull" class="right-menu-item hover-effect" />
- <!-- <el-tooltip content="布局大小" effect="dark" placement="bottom">
- <size-select id="size-select" class="right-menu-item hover-effect" />
- </el-tooltip> -->
- </template>
- <el-dropdown class="avatar-container right-menu-item hover-effect" trigger="click">
- <div class="avatar-wrapper">
- <img :src="doctor.avatar" class="user-avatar">
- <i class="el-icon-caret-bottom" />
- </div>
- <el-dropdown-menu slot="dropdown">
- <!-- <router-link to="/doctor/doctorItem">
- <el-dropdown-item>个人中心</el-dropdown-item>
- </router-link> -->
- <el-dropdown-item @click.native="setting = true">
- <span>布局设置</span>
- </el-dropdown-item>
- <el-dropdown-item divided @click.native="logout">
- <span>退出登录</span>
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- <el-drawer :append-to-body="true" size="35%" title="消息中心" :with-header="false" :title="msg.title"
- :visible.sync="msg.open">
- <msg ref="msg" @update-count="getMsgCount" @close="closeMsg" />
- </el-drawer>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import Breadcrumb from '@/components/Breadcrumb'
- import TopNav from '@/components/TopNav'
- import Hamburger from '@/components/Hamburger'
- import Screenfull from '@/components/Screenfull'
- import SizeSelect from '@/components/SizeSelect'
- import Search from '@/components/HeaderSearch'
- import { getDoctorDetails } from "@/api/doctor";
- import msg from "@/views/components/doctorMsg/msg";
- import { getMsg, getMsgList, getMsgCount, setRead } from "@/api/doctorMsg";
- export default {
- components: {
- Breadcrumb,
- TopNav,
- Hamburger,
- Screenfull,
- SizeSelect,
- Search,
- msg
- },
- data() {
- return {
- doctor: {},
- msgCount: 0,
- previousMsgCount: 0, // 保存上一次的消息计数
- msg: {
- open: false,
- title: '通知消息'
- },
- msgPollingTimer: null, // 轮询定时器
- };
- },
- created() {
- this.getDoctor();
- this.getMsgCount();
- // 启动消息轮询,每30秒检查一次新消息
- this.startMsgPolling();
- },
- beforeDestroy() {
- // 组件销毁前清除定时器
- this.stopMsgPolling();
- },
- computed: {
- ...mapGetters([
- 'sidebar',
- 'avatar',
- 'device'
- ]),
- setting: {
- get() {
- return this.$store.state.settings.showSettings
- },
- set(val) {
- this.$store.dispatch('settings/changeSetting', {
- key: 'showSettings',
- value: val
- })
- }
- },
- topNav: {
- get() {
- return this.$store.state.settings.topNav
- }
- }
- },
- methods: {
- startMsgPolling() {
- // 清除已存在的定时器
- if (this.msgPollingTimer) {
- clearInterval(this.msgPollingTimer);
- }
- // 设置定时器,每30秒获取一次消息计数
- this.msgPollingTimer = setInterval(() => {
- this.getMsgCount();
- }, 30000); // 30秒轮询一次
- },
- stopMsgPolling() {
- if (this.msgPollingTimer) {
- clearInterval(this.msgPollingTimer);
- this.msgPollingTimer = null;
- }
- },
- getMsgCount() {
- getMsg().then(response => {
- // 计算所有未读消息总数
- let totalCount = 0;
- response.counts.forEach(item => {
- totalCount += item.total;
- });
- // 保存旧的消息计数
- this.previousMsgCount = this.msgCount;
- // 更新消息计数
- this.msgCount = totalCount;
- // 如果消息计数增加了,显示通知弹框
- if (this.msgCount > this.previousMsgCount && this.msgCount > 0) {
- this.$notify({
- title: '提示',
- message: '您有' + this.msgCount + "条消息通知",
- position: 'top-right',
- type: 'info'
- });
- }
- }).catch(error => {
- console.error("获取消息计数失败:", error);
- });
- },
- openMsg() {
- console.log(11);
- this.msg.open = true;
- // 每次打开消息界面时刷新数据
- if (this.$refs.msg) {
- this.$refs.msg.getMsg();
- }
- // 打开消息后重新获取消息计数来更新角标
- this.getMsgCount();
- },
- closeMsg(){
- this.msg.open = false;
- },
- getDoctor() {
- getDoctorDetails().then(response => {
- this.doctor = response.data;
- });
- },
- toggleSideBar() {
- this.$store.dispatch('app/toggleSideBar')
- },
- async logout() {
- this.$confirm('确定注销并退出系统吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.$store.dispatch('LogOut').then(() => {
- this.$store.dispatch('imlogout')
- location.href = '/index';
- })
- }).catch(() => { });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .navbar {
- height: 50px;
- overflow: hidden;
- position: relative;
- background: #fff;
- box-shadow: 0 1px 4px rgba(0, 21, 41, .08);
- .hamburger-container {
- line-height: 46px;
- height: 100%;
- float: left;
- cursor: pointer;
- transition: background .3s;
- -webkit-tap-highlight-color: transparent;
- &:hover {
- background: rgba(0, 0, 0, .025)
- }
- }
- .breadcrumb-container {
- float: left;
- }
- .topmenu-container {
- position: absolute;
- left: 50px;
- }
- .errLog-container {
- display: inline-block;
- vertical-align: top;
- }
- .right-menu {
- float: right;
- height: 100%;
- line-height: 50px;
- &:focus {
- outline: none;
- }
- .right-menu-item {
- display: inline-block;
- padding: 0 8px;
- height: 100%;
- font-size: 18px;
- color: #5a5e66;
- vertical-align: text-bottom;
- .msg {
- text-align: center;
- width: 40px;
- }
- .dot {
- position: absolute;
- right: 195px;
- top: 0px;
- }
- &.hover-effect {
- cursor: pointer;
- transition: background .3s;
- &:hover {
- background: rgba(0, 0, 0, .025)
- }
- }
- }
- .avatar-container {
- margin-right: 30px;
- .avatar-wrapper {
- margin-top: 5px;
- position: relative;
- .user-avatar {
- cursor: pointer;
- width: 40px;
- height: 40px;
- border-radius: 10px;
- }
- .el-icon-caret-bottom {
- cursor: pointer;
- position: absolute;
- right: -20px;
- top: 25px;
- font-size: 12px;
- }
- }
- }
- }
- }
- </style>
|