yaowanxin
2025-08-27 b9427dad6b64a2b96ae8633fe08c55c4e3a53f58
src/store/modules/app.js
@@ -14,7 +14,16 @@
    }),
    actions: {
      toggleSideBar(withoutAnimation) {
        return true
        if (this.sidebar.hide) {
          return false
        }
        this.sidebar.opened = !this.sidebar.opened
        this.sidebar.withoutAnimation = withoutAnimation
        if (this.sidebar.opened) {
          Cookies.set('sidebarStatus', 1)
        } else {
          Cookies.set('sidebarStatus', 0)
        }
      },
      closeSideBar({ withoutAnimation }) {
        Cookies.set('sidebarStatus', 0)