kz-ui-base 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/settings.js +46 -0
- package/common/src/utils/kezhi.js +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
/** 侧边栏主题 深色主题theme-dark,浅色主题theme-light */
|
|
3
|
+
sideTheme: 'theme-dark',
|
|
4
|
+
|
|
5
|
+
/** 是否系统布局配置 */
|
|
6
|
+
showSettings: false,
|
|
7
|
+
|
|
8
|
+
/** 是否显示顶部导航 */
|
|
9
|
+
topNav: false,
|
|
10
|
+
|
|
11
|
+
/** 是否显示 tagsView */
|
|
12
|
+
tagsView: true,
|
|
13
|
+
|
|
14
|
+
/** 是否固定头部 */
|
|
15
|
+
fixedHeader: true,
|
|
16
|
+
|
|
17
|
+
/** 是否显示logo */
|
|
18
|
+
sidebarLogo: true,
|
|
19
|
+
|
|
20
|
+
/** 是否显示动态标题 */
|
|
21
|
+
dynamicTitle: false,
|
|
22
|
+
|
|
23
|
+
/** 库编号 */
|
|
24
|
+
libraryId: 0,
|
|
25
|
+
|
|
26
|
+
/** 站点编号 */
|
|
27
|
+
siteId: 0,
|
|
28
|
+
|
|
29
|
+
/** 系统编号 */
|
|
30
|
+
systemId: 0,
|
|
31
|
+
|
|
32
|
+
/** 初始页名称|图标 */
|
|
33
|
+
homePageName: '首页',
|
|
34
|
+
homePageIcon: 'xy_productCenter',
|
|
35
|
+
|
|
36
|
+
/** 主登录页地址 | loginAddress='' 时则跳转至本地登录页 | 本参数目的为控制集中登录/分散登录 */
|
|
37
|
+
baseSystemUrl: '',
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @type {string | array} 'production' | ['production', 'development']
|
|
41
|
+
* @description Need show err logs component.
|
|
42
|
+
* The default is only used in the production env
|
|
43
|
+
* If you want to also use it in dev, you can pass ['production', 'development']
|
|
44
|
+
*/
|
|
45
|
+
errorLog: 'production'
|
|
46
|
+
}
|