Commit 491b0f3d authored by RuoYi's avatar RuoYi

修复字典缓存删除方法参数错误问题(I7UDIR)

parent 90260ce2
......@@ -14,7 +14,7 @@ const mutations = {
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
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment