JS Code
window.$("document").ready(() => {
//
const windowHeight = document.documentElement.clientHeight
const menuListHeight = windowHeight - 80 + "px"
const contentListHeight = windowHeight - 101 + "px"
window.$(".workbenchdiv1").css("height", menuListHeight)
window.$(".workbenchdiv2").css("height", contentListHeight)
//
window.$(".have-list ul:nth-child(1)").on("click", function () {
window.$(this).siblings().slideToggle()
})
//
window.$(".no-list").on("click", function () {
})
})