fix: 项目列表处于置顶选中状态显示选中样式

This commit is contained in:
韦荣超 2022-02-25 09:55:16 +08:00
parent 313fc09c8d
commit 24c8a4a9d1

View File

@ -672,7 +672,7 @@ export default {
return { return {
"active": this.curPath == '/manage/' + path, "active": this.curPath == '/manage/' + path,
"open-menu": openMenu === true, "open-menu": openMenu === true,
"top": item.top_at, "top": item.top_at && this.curPath != '/manage/' + path,
"operate": item.id == this.topOperateItem.id && this.topOperateVisible "operate": item.id == this.topOperateItem.id && this.topOperateVisible
}; };
}, },