兰宝车间质量管理系统-前端
LiuHao
2023-04-02 251d2411f235e23209d57173857e05b637729ce8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
declare type DefaultSettings = {
    /**
     * 网页标题
     */
    title?: string;
 
    /**
     * 侧边栏主题 theme-dark | theme-light
     */
    sideTheme?: string;
 
    /**
     * 是否显示系统布局设置
     */
    showSettings?: boolean;
 
    /**
     * 是否显示顶部导航
     */
    topNav?: boolean;
 
    /**
     * 是否显示多标签导航
     */
    tagsView?: boolean;
    /**
     * 是否固定头部
     */
    fixedHeader?: boolean;
    /**
     * 是否显示侧边栏Logo
     */
    sidebarLogo?: boolean;
    /**
     * 导航栏布局
     */
    layout?: string;
    /**
     * 主题模式
     */
    theme?: string;
 
    /**
     * 布局大小
     */
    size?: string;
 
    /**
     * 语言
     */
    language?: string;
 
    /**
     * 是否显示动态标题
     */
    dynamicTitle?: boolean;
    /**
     * 是否启用动画效果
     */
    animationEnable?: boolean;
    /**
     *  是否启用暗黑模式
     *
     * true:暗黑模式
     * false: 明亮模式
     */
    dark?: boolean;
 
    errorLog?: string;
};