imatrix-ui 2.8.21-dw → 2.8.21
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/lib/super-ui.css +1 -1
- package/lib/super-ui.umd.min.js +5 -35
- package/package.json +4 -2
- package/packages/breadcrumb/index.js +6 -0
- package/packages/breadcrumb/src/breadcrumb.vue +71 -0
- package/packages/department-tree/index.js +6 -0
- package/packages/department-tree/src/department-tree.vue +108 -0
- package/packages/department-tree-inline/index.js +6 -0
- package/packages/department-tree-inline/src/department-multi-tree-inline.vue +402 -0
- package/packages/department-tree-inline/src/department-single-tree-inline.vue +284 -0
- package/packages/department-tree-inline/src/department-tree-inline.vue +86 -0
- package/packages/department-tree-inline/src/department-tree-service.js +245 -0
- package/packages/department-tree-inline/src/search-result.vue +176 -0
- package/packages/department-user-tree/index.js +6 -0
- package/packages/department-user-tree/src/department-user-multiple-tree.vue +116 -0
- package/packages/department-user-tree/src/department-user-single-tree.vue +76 -0
- package/packages/department-user-tree/src/department-user-tree.vue +101 -0
- package/packages/department-user-tree-inline/index.js +6 -0
- package/packages/department-user-tree-inline/src/department-user-multiple-tree-inline.vue +626 -0
- package/packages/department-user-tree-inline/src/department-user-single-tree-inline.vue +269 -0
- package/packages/department-user-tree-inline/src/department-user-tree-inline.vue +79 -0
- package/packages/department-user-tree-inline/src/department-user-tree-multi-service.js +230 -0
- package/packages/department-user-tree-inline/src/department-user-tree-single-service.js +122 -0
- package/packages/department-user-tree-inline/src/search-result.vue +197 -0
- package/packages/directives/prevent-reclick.js +19 -0
- package/packages/dynamic-source-select/index.js +6 -0
- package/packages/dynamic-source-select/src/dynamic-source-select-service.js +70 -0
- package/packages/dynamic-source-select/src/dynamic-source-select.vue +440 -0
- package/packages/dynamic-source-select/src/events.js +55 -0
- package/packages/fs-preview/index.js +6 -0
- package/packages/fs-preview/src/fs-preview.vue +226 -0
- package/packages/fs-upload/index.js +6 -0
- package/packages/fs-upload/src/fs-upload-multi.vue +420 -0
- package/packages/fs-upload/src/fs-upload-single.vue +312 -0
- package/packages/fs-upload/src/fs-upload.vue +189 -0
- package/packages/fs-upload/src/see-big-picture.vue +55 -0
- package/packages/fs-upload-list/index.js +6 -0
- package/packages/fs-upload-list/src/fs-upload-list.vue +287 -0
- package/packages/hamburger/index.js +6 -0
- package/packages/hamburger/src/hamburger.vue +38 -0
- package/packages/index.js +121 -0
- package/packages/multipart-upload/index.js +6 -0
- package/packages/multipart-upload/src/index.vue +73 -0
- package/packages/multipart-upload/src/multipart-upload-form.vue +297 -0
- package/packages/multipart-upload/src/multipart-upload-list.vue +378 -0
- package/packages/organization-input/index.js +6 -0
- package/packages/organization-input/src/organization-input.vue +542 -0
- package/packages/plugins/export-data-new.js +453 -0
- package/packages/plugins/export-data.js +361 -0
- package/packages/plugins/index.js +15 -0
- package/packages/plugins/public-method.js +43 -0
- package/packages/remove-department/index.js +6 -0
- package/packages/remove-department/src/remove-department.vue +172 -0
- package/packages/remove-department/src/remove-dept-service.js +20 -0
- package/packages/remove-user/index.js +6 -0
- package/packages/remove-user/src/remove-user-service.js +20 -0
- package/packages/remove-user/src/remove-user.vue +195 -0
- package/packages/remove-workgroup/index.js +6 -0
- package/packages/remove-workgroup/src/remove-workgroup-service.js +20 -0
- package/packages/remove-workgroup/src/remove-workgroup.vue +159 -0
- package/packages/rich-editor/index.js +7 -0
- package/packages/rich-editor/index.vue +278 -0
- package/packages/rich-editor/langs/zh-Hans.js +1 -0
- package/packages/rich-editor/viewer.vue +103 -0
- package/packages/scan-code-input/index.js +6 -0
- package/packages/scan-code-input/src/events.js +33 -0
- package/packages/scan-code-input/src/scan-code-input-colse.vue +131 -0
- package/packages/scan-code-input/src/scan-code-input.vue +116 -0
- package/packages/secret-info/index.js +7 -0
- package/packages/secret-info/index.vue +90 -0
- package/packages/super-grid/index.js +7 -0
- package/packages/super-grid/src/apis.js +763 -0
- package/packages/super-grid/src/columns-config.vue +335 -0
- package/packages/super-grid/src/custom-formatter.js +250 -0
- package/packages/super-grid/src/dynamic-input.vue +1279 -0
- package/packages/super-grid/src/eventBus.js +2 -0
- package/packages/super-grid/src/events.js +55 -0
- package/packages/super-grid/src/formValidatorUtil.js +226 -0
- package/packages/super-grid/src/formatter.js +181 -0
- package/packages/super-grid/src/group-column.vue +100 -0
- package/packages/super-grid/src/header-context-menu.vue +87 -0
- package/packages/super-grid/src/index-column.vue +51 -0
- package/packages/super-grid/src/normal-column.vue +769 -0
- package/packages/super-grid/src/public-methods.js +31 -0
- package/packages/super-grid/src/row-operation.vue +161 -0
- package/packages/super-grid/src/search-button.vue +66 -0
- package/packages/super-grid/src/search-condition-input.vue +61 -0
- package/packages/super-grid/src/search-condition-list.vue +59 -0
- package/packages/super-grid/src/search-form-advancedQuery.vue +653 -0
- package/packages/super-grid/src/search-form-dialog.vue +79 -0
- package/packages/super-grid/src/search-form-item.vue +386 -0
- package/packages/super-grid/src/search-form-number.vue +38 -0
- package/packages/super-grid/src/search-form-open.vue +162 -0
- package/packages/super-grid/src/search-form-ordinarySearch.vue +188 -0
- package/packages/super-grid/src/search-form.vue +634 -0
- package/packages/super-grid/src/search-methods.js +387 -0
- package/packages/super-grid/src/selection-column.vue +43 -0
- package/packages/super-grid/src/store.js +3 -0
- package/packages/super-grid/src/super-grid-service.js +561 -0
- package/packages/super-grid/src/super-grid.vue +2793 -0
- package/packages/super-grid/src/utils.js +763 -0
- package/packages/super-grid/src/view-image-dialog.vue +130 -0
- package/packages/super-nine-grid/index.js +7 -0
- package/packages/super-nine-grid/src/apis.js +103 -0
- package/packages/super-nine-grid/src/custom-formatter.js +66 -0
- package/packages/super-nine-grid/src/formatter.js +132 -0
- package/packages/super-nine-grid/src/search-form-number.vue +38 -0
- package/packages/super-nine-grid/src/search-form.vue +430 -0
- package/packages/super-nine-grid/src/search-methods.js +134 -0
- package/packages/super-nine-grid/src/store.js +3 -0
- package/packages/super-nine-grid/src/super-grid-service.js +91 -0
- package/packages/super-nine-grid/src/super-nine-grid.vue +872 -0
- package/packages/super-nine-grid/src/utils.js +261 -0
- package/packages/svg-icon/index.js +6 -0
- package/packages/svg-icon/src/svg-icon.vue +43 -0
- package/packages/utils/utils.js +152 -0
- package/packages/utils/value-set.js +86 -0
- package/packages/valid-code/index.js +7 -0
- package/packages/valid-code/src/valid-code.vue +95 -0
- package/packages/workflow-button/index.js +6 -0
- package/packages/workflow-button/src/workflow-button.vue +325 -0
- package/packages/workflow-history-list/index.js +6 -0
- package/packages/workflow-history-list/src/api.js +7 -0
- package/packages/workflow-history-list/src/workflow-history-list.vue +185 -0
- package/packages/workgroup-tree/index.js +6 -0
- package/packages/workgroup-tree/src/workgroup-tree.vue +76 -0
- package/packages/workgroup-tree-inline/index.js +6 -0
- package/packages/workgroup-tree-inline/src/workgroup-tree-inline.vue +317 -0
- package/packages/workgroup-tree-inline/src/workgroup-tree-service.js +43 -0
- package/packages/workgroup-user-tree/index.js +6 -0
- package/packages/workgroup-user-tree/src/workgroup-user-tree.vue +100 -0
- package/packages/workgroup-user-tree-inline/index.js +6 -0
- package/packages/workgroup-user-tree-inline/src/workgroup-tree-inline-service.js +163 -0
- package/packages/workgroup-user-tree-inline/src/workgroup-user-tree-inline.vue +436 -0
- package/packages/year-range-picker/index.js +6 -0
- package/packages/year-range-picker/src/year-range-picker.vue +51 -0
- package/src/i18n/i18n.js +1 -1
- package/src/i18n/langs/cn.js +4 -2
- package/src/i18n/langs/en.js +4 -2
- package/src/index.js +93 -0
- package/src/permission.js +7 -3
- package/src/plugins.js +3 -3
- package/src/router/index.js +24 -0
- package/src/store/getters.js +2 -1
- package/src/store/modules/app.js +10 -1
- package/src/styles/display-layout.scss +34 -0
- package/src/styles/index.scss +32 -4
- package/src/styles/theme/dark-blue/button.scss +9 -0
- package/src/styles/theme/dark-blue/card.scss +64 -0
- package/src/styles/theme/dark-blue/checkbox.scss +10 -0
- package/src/styles/theme/dark-blue/dark-blue-var.scss +8 -0
- package/src/styles/theme/dark-blue/dialog.scss +21 -0
- package/src/styles/theme/dark-blue/element-variables.scss +7 -0
- package/src/styles/theme/dark-blue/font.scss +71 -0
- package/src/styles/theme/dark-blue/form.scss +51 -0
- package/src/styles/theme/dark-blue/index.scss +247 -0
- package/src/styles/theme/dark-blue/input.scss +15 -0
- package/src/styles/theme/dark-blue/pagination.scss +14 -0
- package/src/styles/theme/dark-blue/scrollbar-style.scss +32 -0
- package/src/styles/theme/dark-blue/sidebar.scss +296 -0
- package/src/styles/theme/dark-blue/tab.scss +83 -0
- package/src/styles/theme/dark-blue/table.scss +60 -0
- package/src/styles/theme/dark-blue/tree.scss +31 -0
- package/src/styles/theme/dark-blue/var.scss +1028 -0
- package/src/styles/theme/gray/form-style.scss +2 -2
- package/src/styles/theme/gray/input-style.scss +8 -0
- package/src/utils/auth-api.js +115 -0
- package/src/utils/auth.js +34 -42
- package/src/utils/calculator/calculator-factory.js +2 -2
- package/src/utils/common-util.js +34 -0
- package/src/utils/jump-page-utils.js +29 -5
- package/src/utils/menu.js +19 -0
- package/src/utils/permission.js +4 -0
- package/src/utils/request.js +18 -2
- package/src/utils/util.js +7 -3
- package/src/views/dsc-component/Sidebar/Item.vue +4 -4
- package/src/views/dsc-component/Sidebar/Link.vue +11 -2
- package/src/views/dsc-component/Sidebar/SidebarItem.vue +36 -20
- package/src/views/dsc-component/Sidebar/index.vue +24 -12
- package/src/views/dsc-component/tabs/tab-content.vue +16 -1
- package/src/views/login/index.vue +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
|
|
3
|
+
// 滚动条基础样式
|
|
4
|
+
::-webkit-scrollbar {
|
|
5
|
+
width: 6px; // 纵向的宽度
|
|
6
|
+
height: 8px; // 横向的高度
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// 默认下滚动条的样式
|
|
10
|
+
::-webkit-scrollbar-thumb {
|
|
11
|
+
background: #eaeaea;
|
|
12
|
+
border: none;
|
|
13
|
+
border-radius: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// 鼠标悬停在滚动条时的样式
|
|
17
|
+
::-webkit-scrollbar-thumb:hover {
|
|
18
|
+
background: rgba(157, 165, 183, 0.7)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// 滚动条区域 空白地方的样式
|
|
22
|
+
::-webkit-scrollbar-track {
|
|
23
|
+
background-color: transparent;
|
|
24
|
+
border: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// 鼠标悬停在滚动条时 滚动条区域 空白地方的样式
|
|
28
|
+
::-webkit-scrollbar-track:hover {
|
|
29
|
+
background-color: #eaeaea;
|
|
30
|
+
border: none;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
#app {
|
|
3
|
+
|
|
4
|
+
// $topHeight: 50px;
|
|
5
|
+
// 主体区域
|
|
6
|
+
.main-container {
|
|
7
|
+
height: 100%;
|
|
8
|
+
transition: margin-left .28s;
|
|
9
|
+
margin-left: 210px;
|
|
10
|
+
// padding-left: 24px;
|
|
11
|
+
position: relative;
|
|
12
|
+
background: #F8F9FA;
|
|
13
|
+
|
|
14
|
+
.nav-tab {
|
|
15
|
+
padding-top: 0px;
|
|
16
|
+
padding-left: 0px;
|
|
17
|
+
.el-tabs__header{
|
|
18
|
+
padding-left: 24px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// 侧边栏
|
|
24
|
+
.sidebar-container {
|
|
25
|
+
transition: width 0.28s;
|
|
26
|
+
width: 210px !important;
|
|
27
|
+
height: 100%;
|
|
28
|
+
position: fixed;
|
|
29
|
+
top: 0;
|
|
30
|
+
bottom: 0;
|
|
31
|
+
left: 0;
|
|
32
|
+
padding-top: 16px;
|
|
33
|
+
z-index: 1001;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
font-weight: medium;
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
line-height: normal;
|
|
38
|
+
letter-spacing: 0px;
|
|
39
|
+
text-align: left;
|
|
40
|
+
color: rgba(0, 13, 31, 0.85);
|
|
41
|
+
background: #FFF;
|
|
42
|
+
box-shadow: 0px 2px 8px 0px rgba(164, 178, 201, 0.4);
|
|
43
|
+
|
|
44
|
+
//reset element-ui css
|
|
45
|
+
.horizontal-collapse-transition {
|
|
46
|
+
transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.el-scrollbar__bar.is-vertical {
|
|
50
|
+
right: 0px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.scrollbar-wrapper {
|
|
54
|
+
overflow-x: hidden !important;
|
|
55
|
+
|
|
56
|
+
.el-scrollbar__view {
|
|
57
|
+
height: calc(100vh - 70px);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.system-item {
|
|
61
|
+
padding-left: 10px;
|
|
62
|
+
font-size: medium;
|
|
63
|
+
font-weight: 600;
|
|
64
|
+
opacity: 0.8;
|
|
65
|
+
cursor: default;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.hamburger-container {
|
|
70
|
+
position: absolute;
|
|
71
|
+
bottom: 0px;
|
|
72
|
+
width: 100%;
|
|
73
|
+
line-height: 48px;
|
|
74
|
+
height: 48px;
|
|
75
|
+
background: #FFFFFF;
|
|
76
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
77
|
+
border: 1px solid #EAEAEA;
|
|
78
|
+
padding: 0 24px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.is-horizontal {
|
|
82
|
+
display: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
a {
|
|
86
|
+
display: inline-block;
|
|
87
|
+
width: 100%;
|
|
88
|
+
overflow: hidden;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.svg-icon {
|
|
92
|
+
margin-right: 16px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.el-menu {
|
|
96
|
+
border: none;
|
|
97
|
+
height: 100%;
|
|
98
|
+
width: 100% !important;
|
|
99
|
+
background-color: #FFF;
|
|
100
|
+
color: #000D1F;
|
|
101
|
+
font-weight: medium;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.el-menu-item {
|
|
105
|
+
height: 46px;
|
|
106
|
+
color: #525A6C;
|
|
107
|
+
line-height: 46px;
|
|
108
|
+
font-weight: medium;
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.el-menu-item.is-active {
|
|
113
|
+
color: #1A6BF3;
|
|
114
|
+
font-weight: medium;
|
|
115
|
+
font-size: 14px;
|
|
116
|
+
letter-spacing: 0px;
|
|
117
|
+
text-align: left;
|
|
118
|
+
box-sizing: border-box;
|
|
119
|
+
border-left: 4px solid #1A6BF3
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.el-submenu__title {
|
|
123
|
+
height: 46px;
|
|
124
|
+
line-height: 46px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.hideSidebar {
|
|
130
|
+
.sidebar-container {
|
|
131
|
+
width: 54px !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.main-container {
|
|
135
|
+
margin-left: 54px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.submenu-title-noDropdown {
|
|
139
|
+
padding-left: 20px !important;
|
|
140
|
+
position: relative;
|
|
141
|
+
|
|
142
|
+
.el-tooltip {
|
|
143
|
+
padding: 0 20px !important;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.el-submenu {
|
|
148
|
+
overflow: hidden;
|
|
149
|
+
|
|
150
|
+
&>.el-submenu__title {
|
|
151
|
+
padding-left: 20px !important;
|
|
152
|
+
|
|
153
|
+
.el-submenu__icon-arrow {
|
|
154
|
+
display: none;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.el-menu--collapse {
|
|
160
|
+
.el-submenu {
|
|
161
|
+
&>.el-submenu__title {
|
|
162
|
+
&>span {
|
|
163
|
+
height: 0;
|
|
164
|
+
width: 0;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
visibility: hidden;
|
|
167
|
+
display: inline-block;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.sidebar-container .nest-menu .el-submenu>.el-submenu__title,
|
|
175
|
+
.sidebar-container .el-submenu .el-menu-item {
|
|
176
|
+
min-width: 180px !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.sidebar-container .el-menu--collapse .el-menu .el-submenu {
|
|
180
|
+
min-width: 180px !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.sidebar-container .el-menu--collapse .el-submenu.is-active>.el-submenu__title,
|
|
184
|
+
.sidebar-container .el-menu--collapse .el-menu.is-active {
|
|
185
|
+
background-color: #FFFFFF !important;
|
|
186
|
+
color: #1A6BF3;
|
|
187
|
+
font-weight: medium;
|
|
188
|
+
border-left: 4px solid #1A6BF3
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.sidebar-container .el-menu--collapse .el-submenu__title:not(.is-disabled):hover,
|
|
192
|
+
.sidebar-container .el-menu-item:not(.is-disabled):hover {
|
|
193
|
+
background: #F7F7F8;
|
|
194
|
+
color: rgba(0, 13, 31, 0.85);
|
|
195
|
+
font-weight: medium;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.sidebar-container .el-menu--collapse {
|
|
199
|
+
text-align: left;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
//适配移动端
|
|
203
|
+
.mobile {
|
|
204
|
+
.main-container {
|
|
205
|
+
margin-left: 0px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.sidebar-container {
|
|
209
|
+
transition: transform .28s;
|
|
210
|
+
width: 224px !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
&.hideSidebar {
|
|
214
|
+
.sidebar-container {
|
|
215
|
+
transition-duration: 0.3s;
|
|
216
|
+
transform: translate3d(-224px, 0, 0);
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.withoutAnimation {
|
|
222
|
+
|
|
223
|
+
.main-container,
|
|
224
|
+
.sidebar-container {
|
|
225
|
+
transition: none;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.sidebar-container-popper {
|
|
231
|
+
width: 180px;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.sidebar-container-popper .el-submenu__title:not(.is-disabled):hover {
|
|
235
|
+
background: #F7F7F8;
|
|
236
|
+
color: rgba(0, 13, 31, 0.85);
|
|
237
|
+
font-weight: medium;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.sidebar-container-popper .el-menu .el-submenu.is-active>.el-submenu__title {
|
|
241
|
+
background-color: #FFFFFF !important;
|
|
242
|
+
color: #3D4CF2;
|
|
243
|
+
font-weight: regular;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.sidebar-container-popper .el-menu .el-menu-item:hover {
|
|
247
|
+
background: #F7F7F8;
|
|
248
|
+
color: rgba(0, 13, 31, 0.85);
|
|
249
|
+
font-weight: medium;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
//菜单栏右侧展开时选中菜单的样式
|
|
253
|
+
.sidebar-container-popper .el-menu .el-menu-item.is-active {
|
|
254
|
+
color: #FFFFFF;
|
|
255
|
+
border-radius: 2px;
|
|
256
|
+
background: #0078EE;
|
|
257
|
+
font-weight: regular;
|
|
258
|
+
font-size: 14px;
|
|
259
|
+
text-align: left;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
//侧边弹出菜单样式
|
|
263
|
+
.sidebar-container-popper .el-menu-item {
|
|
264
|
+
height: 46px;
|
|
265
|
+
line-height: 46px;
|
|
266
|
+
font-weight: medium;
|
|
267
|
+
color: #A4ABB8;
|
|
268
|
+
min-width: 164px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.sidebar-container-popper .el-submenu__title {
|
|
272
|
+
height: 46px;
|
|
273
|
+
line-height: 46px;
|
|
274
|
+
color: #A4ABB8;
|
|
275
|
+
font-weight: medium;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.sidebar-container-popper .el-menu--collapse {
|
|
279
|
+
text-align: left;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.sidebar-container-popper .el-menu--popup {
|
|
283
|
+
min-width: 180px;
|
|
284
|
+
padding: 12px 8px 12px 8px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
.el-menu--vertical {
|
|
290
|
+
&>.el-menu {
|
|
291
|
+
.svg-icon {
|
|
292
|
+
margin-right: 16px;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
|
|
3
|
+
.superForm,
|
|
4
|
+
.chartTabPage {
|
|
5
|
+
|
|
6
|
+
.el-tabs {
|
|
7
|
+
background-color: #FFFFFF;
|
|
8
|
+
// margin-top: 16px;
|
|
9
|
+
// margin-left: 24px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.el-tabs__active-bar {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.el-tabs__header {
|
|
17
|
+
margin: 0 0 6px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.el-tabs__header.is-top {
|
|
21
|
+
border-bottom: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.el-tabs--top .el-tabs__item.is-top {
|
|
25
|
+
padding: 0px 20px 0px 20px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.el-tabs__nav {
|
|
29
|
+
background-color: #F7F7F8;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.el-tabs__item {
|
|
33
|
+
height: 32px;
|
|
34
|
+
line-height: 32px;
|
|
35
|
+
margin: 4px;
|
|
36
|
+
color: rgba(0, 13, 31, 0.85)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.el-tabs__nav-wrap::after {
|
|
40
|
+
display: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
.el-tabs__item.is-active {
|
|
45
|
+
background-color: #FFFFFF;
|
|
46
|
+
color: #3D4CF2;
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.el-form--label-right {
|
|
51
|
+
border-radius: 28px 8px 0 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.el-tabs__content {
|
|
55
|
+
background-color: #FFFFFF;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.el-tabs--border-card>.el-tabs__content {
|
|
59
|
+
padding: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.el-tabs--border-card {
|
|
63
|
+
background-color: #F7F7F8;
|
|
64
|
+
border-radius: 8px 8px 0 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.el-tabs--border-card>.el-tabs__header {
|
|
68
|
+
background-color: #F7F7F8;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.el-tabs--border-card>.el-tabs__header .el-tabs__item:not(.is-disabled):hover {
|
|
72
|
+
color: #3D4CF2;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active {
|
|
76
|
+
color: #3D4CF2;
|
|
77
|
+
font-size: 14px;
|
|
78
|
+
font-weight: 500;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
@import "./dark-blue-var.scss";
|
|
2
|
+
|
|
3
|
+
.dark-blue {
|
|
4
|
+
|
|
5
|
+
$table-cell-font-color: #313233;
|
|
6
|
+
|
|
7
|
+
// 表头背景颜色 包括组合表头 已经当表头有空白列表头
|
|
8
|
+
.el-table th {
|
|
9
|
+
background-color: $th-cell-background !important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.el-table__header-wrapper {
|
|
13
|
+
background-color: $th-cell-background;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// .el-table th.el-table__cell {
|
|
17
|
+
// background-color: $th-cell-background;
|
|
18
|
+
// }
|
|
19
|
+
|
|
20
|
+
// .el-table thead.is-group th.el-table__cell {
|
|
21
|
+
// background-color: $th-cell-background;
|
|
22
|
+
// }
|
|
23
|
+
|
|
24
|
+
.el-table .el-table__cell {
|
|
25
|
+
padding: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// 表头字体样式
|
|
29
|
+
.el-table th.el-table__cell>.cell {
|
|
30
|
+
color: $table-cell-font-color;
|
|
31
|
+
font-family: Source Han Sans CN;
|
|
32
|
+
font-weight: medium;
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
line-height: 22px;
|
|
35
|
+
letter-spacing: 0px;
|
|
36
|
+
// text-align: left;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// 表格内容颜色
|
|
40
|
+
.el-table .cell {
|
|
41
|
+
color: $table-cell-font-color;
|
|
42
|
+
font-family: Source Han Sans CN;
|
|
43
|
+
font-weight: regular;
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
line-height: 22px;
|
|
46
|
+
letter-spacing: 0px;
|
|
47
|
+
// text-align: left;
|
|
48
|
+
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.el-button--text {
|
|
52
|
+
color: $--color-primary;
|
|
53
|
+
font-family: Source Han Sans CN;
|
|
54
|
+
font-weight: regular;
|
|
55
|
+
font-size: 14px;
|
|
56
|
+
line-height: 22px;
|
|
57
|
+
letter-spacing: 0px;
|
|
58
|
+
text-align: center;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@import "./dark-blue-var.scss";
|
|
2
|
+
|
|
3
|
+
.dark-blue {
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.el-tree-node__content:hover {
|
|
7
|
+
background-color: $th-cell-background;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.el-tree-node__content>.el-checkbox {
|
|
11
|
+
margin-right: 8px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
.el-tree-node .is-checked {
|
|
17
|
+
background-color: $th-cell-background !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
|
|
21
|
+
background-color: transparent;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.el-tree-node .is-expanded .is-focusable .is-checked {
|
|
25
|
+
background-color: transparent;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.el-tree-node .is-current .is-focusable {
|
|
29
|
+
background-color: $th-cell-background !important;
|
|
30
|
+
}
|
|
31
|
+
}
|