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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.index-view-layout--top {
font-size: var(--app-font-size);
line-height: var(--app-line-height);
color: var(--app-color-black);
.index-view-header {
height: 64px;
display: flex;
justify-content: space-between;
align-items: center;
overflow-x: auto;
background-color: var(--app-color-black);
color: var(--app-color-white);
.index-view-header__left {
font-size: 21px;
font-weight: 700;
margin-left: 50px;
.app-caption {
color: var(--app-color-white);
}
.app-icon {
width: 37px;
height: 37px;
margin-right: 6px;
}
}
.index-view-header__right {
display: flex;
align-items: center;
margin-right: 38px;
}
}
.index-view-content {
height: calc(100% - 64px);
overflow: auto;
padding: 0 5%;
background-color: var(--ey-color-gray-250);
display: flex;
flex-direction: column;
>.view-container,>.app-view-layout {
flex-grow: 1;
overflow: unset;
height: auto;
+.copyright-notice {
position: relative;
}
}
}
.copyright-notice {
height: 100px;
width: 100%;
text-align: center;
flex-shrink: 0;
position: absolute;
bottom: 0px;
.notice {
padding-top: 40px;
color: var(--app-color-gray-200);
}
}
}
.index-view-layout--top {
.index-view-content{
// 编辑视图默认使用
.edit-view-layout.view-default-usage{
position: inherit;
.view-header{
position: absolute;
z-index: 100;
top: 106px;
width: calc(90% - 4px);
background-color: var(--ey-color-white);
border-radius: 6px 6px 0 0;
}
}
// 表格视图默认使用
.grid-view-layout.view-default-usage{
// 为什么写在这边,因为只有上布局会有copyright,这里算高度算上
height: calc(100% - 130px);
display: flex;
flex-direction: column;
.view-content{
flex: 1;
overflow-y: auto;
}
}
}
}