RuoYi
2023-08-23 491b0f3db8a7bba3ff043f3561fc5c24344d8fdd
修复字典缓存删除方法参数错误问题(I7UDIR)
已修改1个文件
2 ■■■ 文件已修改
ruoyi-ui/src/store/modules/dict.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/store/modules/dict.js
@@ -14,7 +14,7 @@
    try {
      for (let i = 0; i < state.dict.length; i++) {
        if (state.dict[i].key == key) {
          state.dict.splice(i, i)
          state.dict.splice(i, 1)
          return true
        }
      }