1.前端代码拆分整理
2.合并统一配色方案 3.修改所有功能按钮为右上角图标 4.修改附件到文档相关按钮内
This commit is contained in:
@@ -3,10 +3,13 @@ import {defineStore} from 'pinia'
|
||||
export const useStorePageData = defineStore('pageData', {
|
||||
state: () => {
|
||||
return {
|
||||
spaceInfo: {},
|
||||
pageInfo: {},
|
||||
pageAuth: {},
|
||||
fileList: [],
|
||||
choosePageId: 0,
|
||||
optionPageId: 0,
|
||||
wikiPageList: [],
|
||||
pageIsUnLock: false,
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
12
zyplayer-doc-ui/wiki-ui/src/store/spaceData.js
Normal file
12
zyplayer-doc-ui/wiki-ui/src/store/spaceData.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import {defineStore} from 'pinia'
|
||||
|
||||
export const useStoreSpaceData = defineStore('spaceData', {
|
||||
state: () => {
|
||||
return {
|
||||
spaceInfo:{},
|
||||
chooseSpaceId:1,
|
||||
spaceOptions: [],
|
||||
spaceList:[]
|
||||
}
|
||||
},
|
||||
});
|
||||
@@ -8,6 +8,9 @@ export const useStoreDisplay = defineStore('wikiDisplay', {
|
||||
// 是否显示右边评论栏
|
||||
commentShow: false,
|
||||
commentActiveTab: 'comment',
|
||||
showMenu: true,
|
||||
rightAsideWidth: 300,
|
||||
showHeader:true
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user