Vanessa 2024-12-26 09:18:14 +08:00
parent 9b172f80ca
commit aa2b0d384d

View file

@ -1290,6 +1290,8 @@ export const openMenuPanel = (options: {
break; break;
} else if (type === "av-view-switch") { } else if (type === "av-view-switch") {
if (!target.parentElement.classList.contains("b3-menu__item--current")) { if (!target.parentElement.classList.contains("b3-menu__item--current")) {
avPanelElement.querySelector(".b3-menu__item--current")?.classList.remove("b3-menu__item--current");
target.parentElement.classList.add("b3-menu__item--current")
options.blockElement.removeAttribute("data-render"); options.blockElement.removeAttribute("data-render");
avRender(options.blockElement, options.protyle, undefined, target.parentElement.dataset.id); avRender(options.blockElement, options.protyle, undefined, target.parentElement.dataset.id);
} }
@ -1304,6 +1306,8 @@ export const openMenuPanel = (options: {
element: target.parentElement element: target.parentElement
}); });
} else { } else {
avPanelElement.querySelector(".b3-menu__item--current")?.classList.remove("b3-menu__item--current");
target.parentElement.classList.add("b3-menu__item--current")
options.blockElement.removeAttribute("data-render"); options.blockElement.removeAttribute("data-render");
avRender(options.blockElement, options.protyle, () => { avRender(options.blockElement, options.protyle, () => {
openViewMenu({ openViewMenu({