RuoYi
2020-06-03 c861b78f80f46d757085aa70dac508257f6a25dc
修复菜单管理选择图标,backspace删除时不过滤数据
已修改1个文件
3 ■■■■ 文件已修改
ruoyi-ui/src/components/IconSelect/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/components/IconSelect/index.vue
@@ -25,10 +25,9 @@
  },
  methods: {
    filterIcons() {
      this.iconList = icons
      if (this.name) {
        this.iconList = this.iconList.filter(item => item.includes(this.name))
      } else {
        this.iconList = icons
      }
    },
    selectedIcon(name) {