Ruoyi若依通知公告功能实现(轮询信息铃铛)

效果:(有消息时闪烁,无信息时静止)

实现:

一、打开导航头页面 Navbar.vue

先获取若依【通知公告】里的列表信息(目的->获取条数)

二、添加小铃铛事件

三、自定义小铃铛样式和动画

四、编写轮询事件方法

五、加载事件

注意轮询执行事件之后一定要销毁,防止内存泄露 卡死!!!!!

以下是整个Navbar.vue代码

<template>
  <div class="navbar">
    <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" />

    <breadcrumb id="breadcrumb-container" class="breadcrumb-container" v-if="!topNav"/>
    <top-nav id="topmenu-container" class="topmenu-container" v-if="topNav"/>

    <div class="right-menu">
      <template v-if="device!=='mobile'">
        <search id="header-search" class="right-menu-item" />

        <el-tooltip :content="noticeContent" effect="dark" placement="bottom">
          <el-badge :value="noticeCount" class="right-menu-item hover-effect" :class="{'badge-custom':noticeCount>0}" >
            <i class="el-icon-message-solid" @click="toNoticePage"></i>
          </el-badge>
        </el-tooltip>


        <el-tooltip content="源码地址" effect="dark" placement="bottom">
          <ruo-yi-git id="ruoyi-git" class="right-menu-item hover-effect" />
        </el-tooltip>

        <el-tooltip content="文档地址" effect="dark" placement="bottom">
          <ruo-yi-doc id="ruoyi-doc" class="right-menu-item hover-effect" />
        </el-tooltip>

        <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="avatar" class="user-avatar">
          <i class="el-icon-caret-bottom" />
        </div>
        <el-dropdown-menu slot="dropdown">
          <router-link to="/user/profile">
            <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>
  </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 RuoYiGit from '@/components/RuoYi/Git'
import RuoYiDoc from '@/components/RuoYi/Doc'
import { listNotice } from "@/api/system/notice";

export default {
  components: {
    Breadcrumb,
    TopNav,
    Hamburger,
    Screenfull,
    SizeSelect,
    Search,
    RuoYiGit,
    RuoYiDoc
  },
  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
      }
    }
  },
  data(){
    return{
      noticeContent:'',//通知内容
      noticeCount:0,//通知数量
      intervalId: null
    }
  },
  created(){
    this.poll();
  },
  mounted() {
    // 启动轮询
    this.startPolling();
  },
  beforeDestroy() {
    // 在组件销毁之前清除定时器,防止内存泄漏
    this.stopPolling();
  },
  methods: {
    toggleSideBar() {
      this.$store.dispatch('app/toggleSideBar')
    },
    async logout() {
      this.$confirm('确定注销并退出系统吗?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        this.$store.dispatch('LogOut').then(() => {
          location.href = '/index';
        })
      }).catch(() => {});
    },
    toNoticePage(){
      //前往通知公告管理页面
      this.$router.push("/system/notice");
    },
    startPolling() {
      // 每隔一定时间执行轮询任务
      this.intervalId = setInterval(() => {
        this.poll();
      }, 5000); // 5秒钟轮询一次,根据需要调整间隔时间
    },
    stopPolling() {
      // 清除定时器,停止轮询任务    !!!!重要,防止内存泄露
      clearInterval(this.intervalId);
    },
    poll() {
      // 在这里执行轮询的任务,可以是发送请求或执行其他操作
      listNotice().then(response => {
        this.noticeCount=response.total;//获取信息条数
        this.noticeContent="您有"+this.noticeCount+"条未读的信息";//定制内容
      });
    }
  }
}
</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;

      &.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;
        }
      }
    }

    ::v-deep .el-badge__content {
      margin-top: 9px;/* 调整一下上下左右你喜欢的位置 */
      margin-right: 7px;
    }

    .badge-custom {
      animation: blink-animation 0.5s infinite alternate; /* 设置闪烁动画 */
    }

    @keyframes blink-animation {
      0% { opacity: 1; } /* 定义动画起始状态 */
      100% { opacity: 0.1; } /* 定义动画结束状态 */
    }
  }
}
</style>

  • 7
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 9
    评论
ruoyi若依开源项目是一款Java后台管理系统框架,用于快速搭建企业级的后台管理系统。要在该项目中进行本地开发新功能,可以按照以下步骤进行: 1. 环境搭建:首先需要在本地电脑上搭建好Java环境和开发工具,如JDK、Maven和IDE(Eclipse或IntelliJ IDEA等)。确保环境配置正确,以便进行后续开发工作。 2. 下载ruoyi若依开源项目:从GitHub上下载ruoyi若依的源代码,并导入到IDE中,将项目配置好。 3. 新功能开发:根据需求,创建新的功能模块或者在现有模块基础上进行扩展。在开发过程中,可以利用ruoyi若依的已有功能和API,以提高开发效率。 4. 编码实现:按照设计的需求,使用Java语言进行功能的编码实现。遵循ruoyi若依的开发规范和约定,保证代码的质量和可维护性。 5. 测试和调试:完成功能开发后,进行测试和调试,确保新功能的正确性和稳定性。可以使用单元测试、集成测试等方法进行验证。 6. 文档编写:在开发过程中,及时编写相关的文档,包括需求文档、设计文档和使用说明等。这样有利于其他开发人员了解和使用该功能。 7. 提交和合并:将完成的新功能提交到版本控制系统,然后与团队其他成员进行合并。确保代码的统一和一致性。 8. 部署和发布:在本地环境上完成新功能的开发和测试后,可以将其部署到线上环境,供用户使用。 以上是在ruoyi若依开源项目进行本地开发新功能的大致步骤。通过这样的流程,可以高效地完成功能的开发工作,并保证代码的质量和稳定性。
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值