bug 77959

This commit is contained in:
赵霄
2023-11-02 10:52:46 +08:00
parent 6d6e1fa505
commit aa40cf0ebf
16 changed files with 104 additions and 27 deletions
+5 -1
View File
@@ -28,7 +28,8 @@ const app = {
color: null,
weak: false,
multipage: true, // 默认多页签模式
isEmbedded: false // 是否嵌入其他系统
isEmbedded: false, // 是否嵌入其他系统
defaultHeight: {} // 包含用户信息的高度、面包屑的高度、单行查询条件的高度、单行操作列的高度
},
mutations: {
SET_SIDEBAR_TYPE: (state, type) => {
@@ -82,6 +83,9 @@ const app = {
},
SET_IS_EMBEDDED (state, isEmbedded) {
state.isEmbedded = isEmbedded
},
SET_DEFAULT_HEIGHT (state, defaultHeight) {
state.defaultHeight = defaultHeight
}
},
actions: {