imatrix-ui 2.8.39-dw → 2.8.39-pvtmp
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 +6 -4
- 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 +411 -0
- package/packages/department-tree-inline/src/department-single-tree-inline.vue +293 -0
- package/packages/department-tree-inline/src/department-tree-inline.vue +86 -0
- package/packages/department-tree-inline/src/department-tree-service.js +275 -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 +639 -0
- package/packages/department-user-tree-inline/src/department-user-single-tree-inline.vue +274 -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 +248 -0
- package/packages/department-user-tree-inline/src/department-user-tree-single-service.js +142 -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 +75 -0
- package/packages/dynamic-source-select/src/dynamic-source-select.vue +586 -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 +468 -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 +825 -0
- package/packages/super-grid/src/columns-config.vue +335 -0
- package/packages/super-grid/src/custom-formatter.js +280 -0
- package/packages/super-grid/src/dynamic-input.vue +1286 -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 +775 -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 +654 -0
- package/packages/super-grid/src/search-form-dialog.vue +79 -0
- package/packages/super-grid/src/search-form-item.vue +405 -0
- package/packages/super-grid/src/search-form-number.vue +38 -0
- package/packages/super-grid/src/search-form-open.vue +170 -0
- package/packages/super-grid/src/search-form-ordinarySearch.vue +196 -0
- package/packages/super-grid/src/search-form.vue +642 -0
- package/packages/super-grid/src/search-methods.js +448 -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 +595 -0
- package/packages/super-grid/src/super-grid.vue +2936 -0
- package/packages/super-grid/src/utils.js +782 -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 +131 -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 +93 -0
- package/packages/super-nine-grid/src/super-nine-grid.vue +883 -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/memory-cache-utils.js +90 -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 +197 -0
- package/packages/workgroup-tree/index.js +6 -0
- package/packages/workgroup-tree/src/workgroup-tree.vue +77 -0
- package/packages/workgroup-tree-inline/index.js +6 -0
- package/packages/workgroup-tree-inline/src/search-result.vue +168 -0
- package/packages/workgroup-tree-inline/src/workgroup-tree-inline.vue +458 -0
- package/packages/workgroup-tree-inline/src/workgroup-tree-service.js +71 -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/search-result.vue +197 -0
- package/packages/workgroup-user-tree-inline/src/workgroup-tree-inline-service.js +192 -0
- package/packages/workgroup-user-tree-inline/src/workgroup-user-tree-inline.vue +584 -0
- package/packages/year-range-picker/index.js +6 -0
- package/packages/year-range-picker/src/year-range-picker.vue +51 -0
- package/src/api/sso-service.js +9 -1
- package/src/api/tab.js +3 -3
- package/src/i18n/i18n.js +1 -1
- package/src/i18n/langs/cn.js +15 -5
- package/src/i18n/langs/en.js +15 -5
- package/src/index.js +93 -0
- package/src/permission.js +51 -17
- package/src/plugins.js +3 -3
- package/src/store/getters.js +2 -1
- package/src/store/modules/app.js +10 -1
- package/src/store/modules/user.js +11 -18
- 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/input-style.scss +8 -0
- package/src/styles/theme/gray/sidebar.scss +14 -2
- package/src/utils/auth-api.js +171 -0
- package/src/utils/auth.js +75 -41
- package/src/utils/calculator/calculator-factory.js +2 -2
- package/src/utils/calculator/calculator-util.js +7 -7
- package/src/utils/common-util.js +134 -1
- package/src/utils/jump-page-utils.js +36 -10
- package/src/utils/menu.js +19 -0
- package/src/utils/permission.js +4 -0
- package/src/utils/permissionAuth.js +46 -25
- package/src/utils/request.js +65 -8
- package/src/utils/util.js +77 -29
- package/src/views/dsc-component/Sidebar/Item.vue +5 -5
- package/src/views/dsc-component/Sidebar/Link.vue +11 -2
- package/src/views/dsc-component/Sidebar/SidebarItem.vue +37 -21
- package/src/views/dsc-component/Sidebar/index.vue +24 -12
- package/src/views/dsc-component/tabs/tab-content.vue +18 -2
- package/src/views/layout/components/Breadcrumb/index.vue +1 -1
- package/src/views/login/index.vue +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
.el-dialog__header {
|
|
3
|
+
padding: 22px 0px 0px 24px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.el-dialog__title::before {
|
|
7
|
+
content: "";
|
|
8
|
+
text-align: center;
|
|
9
|
+
background: #1A6BF3;
|
|
10
|
+
float: left;
|
|
11
|
+
position: relative;
|
|
12
|
+
border-radius: 3px;
|
|
13
|
+
/** 定义成 block 元素 **/
|
|
14
|
+
display: block;
|
|
15
|
+
height: 21px;
|
|
16
|
+
width: 4px;
|
|
17
|
+
margin-right: 12px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
$titleColor: rgba(0, 0, 0, 0.85);
|
|
3
|
+
|
|
4
|
+
.list-file {
|
|
5
|
+
color: rgba(0, 13, 31, 0.45);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.form-list-file {
|
|
11
|
+
color: rgba(0, 0, 0, 0.65);
|
|
12
|
+
background: #F2F6FA;
|
|
13
|
+
border-radius: 6px;
|
|
14
|
+
font-size: 14px;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
height: 28px;
|
|
17
|
+
line-height: 28px;
|
|
18
|
+
padding: 0 8px 0 8px;
|
|
19
|
+
margin-right: 32px
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.tip-font {
|
|
23
|
+
color: rgba(0, 0, 0, 0.65);
|
|
24
|
+
font-size: 14px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.superForm {
|
|
28
|
+
.el-form-item__label {
|
|
29
|
+
color: rgba(0, 13, 31, 0.85);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
.page-layout__title {
|
|
35
|
+
width: 46px;
|
|
36
|
+
height: 16px;
|
|
37
|
+
font-size: 11px;
|
|
38
|
+
font-weight: 500;
|
|
39
|
+
color: #333333;
|
|
40
|
+
line-height: 13px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.component-type-name__title {
|
|
44
|
+
width: 40px;
|
|
45
|
+
height: 14px;
|
|
46
|
+
font-size: 10px;
|
|
47
|
+
font-weight: 500;
|
|
48
|
+
color: #333333;
|
|
49
|
+
line-height: 12px;
|
|
50
|
+
// -webkit-background-clip: text;
|
|
51
|
+
// -webkit-text-fill-color: transparent;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.page-layout__title::before {
|
|
55
|
+
content: "";
|
|
56
|
+
text-align: center;
|
|
57
|
+
background: #1A6BF3;
|
|
58
|
+
float: left;
|
|
59
|
+
position: relative;
|
|
60
|
+
border-radius: 3px;
|
|
61
|
+
/** 定义成 block 元素 **/
|
|
62
|
+
display: block;
|
|
63
|
+
// height: 21px;
|
|
64
|
+
// width: 4px;
|
|
65
|
+
margin-right: 12px;
|
|
66
|
+
|
|
67
|
+
width: 2px;
|
|
68
|
+
height: 16px;
|
|
69
|
+
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.dark-blue {
|
|
2
|
+
|
|
3
|
+
.button-at-top {
|
|
4
|
+
width: 100%;
|
|
5
|
+
background: rgb(255, 255, 255);
|
|
6
|
+
line-height: 72px;
|
|
7
|
+
height: 72px;
|
|
8
|
+
position: absolute;
|
|
9
|
+
z-index: 100;
|
|
10
|
+
top: 0px;
|
|
11
|
+
left: 0px;
|
|
12
|
+
right: 0px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.button-at-bottom {
|
|
16
|
+
width: 100%;
|
|
17
|
+
background: rgb(255, 255, 255);
|
|
18
|
+
line-height: 72px;
|
|
19
|
+
height: 72px;
|
|
20
|
+
position: absolute;
|
|
21
|
+
bottom: 0px;
|
|
22
|
+
z-index: 100;
|
|
23
|
+
left: 0px;
|
|
24
|
+
right: 0px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.form-top-button {
|
|
28
|
+
height: 72px;
|
|
29
|
+
float: left;
|
|
30
|
+
padding-left: 24px;
|
|
31
|
+
line-height: 72px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.form-bottom-button {
|
|
35
|
+
height: 72px;
|
|
36
|
+
float: right;
|
|
37
|
+
padding-right: 24px;
|
|
38
|
+
line-height: 72px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.form-center-position{
|
|
42
|
+
position: relative;
|
|
43
|
+
|
|
44
|
+
.form-center-son{
|
|
45
|
+
position: absolute;
|
|
46
|
+
top: 50%;
|
|
47
|
+
left: 50%;
|
|
48
|
+
transform: translate(-50%,-50%);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
@import './element-variables.scss';
|
|
2
|
+
@import './table.scss';
|
|
3
|
+
@import './sidebar.scss';
|
|
4
|
+
@import './font.scss';
|
|
5
|
+
@import './card.scss';
|
|
6
|
+
@import './tab.scss';
|
|
7
|
+
@import './input.scss';
|
|
8
|
+
@import './form.scss';
|
|
9
|
+
@import './pagination.scss';
|
|
10
|
+
@import './button.scss';
|
|
11
|
+
@import './checkbox.scss';
|
|
12
|
+
@import './dialog.scss';
|
|
13
|
+
@import './tree.scss';
|
|
14
|
+
@import './scrollbar-style.scss';
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
.dark-blue {
|
|
18
|
+
font-family: cursive;
|
|
19
|
+
font-size: 14px;
|
|
20
|
+
color: rgba(0, 0, 0, 0.85);
|
|
21
|
+
-moz-osx-font-smoothing: grayscale;
|
|
22
|
+
-webkit-font-smoothing: antialiased;
|
|
23
|
+
text-rendering: optimizeLegibility;
|
|
24
|
+
height: 100%;
|
|
25
|
+
|
|
26
|
+
.el-button {
|
|
27
|
+
font-family: cursive;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fl {
|
|
31
|
+
float: left;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fr {
|
|
35
|
+
float: right;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
html {
|
|
40
|
+
height: 100%;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
#app {
|
|
45
|
+
height: 100%;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
a,
|
|
49
|
+
a:focus,
|
|
50
|
+
a:hover {
|
|
51
|
+
cursor: pointer;
|
|
52
|
+
color: inherit;
|
|
53
|
+
outline: none;
|
|
54
|
+
text-decoration: none;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
div:focus {
|
|
58
|
+
outline: none;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
a:focus,
|
|
62
|
+
a:active {
|
|
63
|
+
outline: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
a,
|
|
67
|
+
a:focus,
|
|
68
|
+
a:hover {
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
color: inherit;
|
|
71
|
+
text-decoration: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.clearfix {
|
|
75
|
+
&:after {
|
|
76
|
+
visibility: hidden;
|
|
77
|
+
display: block;
|
|
78
|
+
font-size: 0;
|
|
79
|
+
content: " ";
|
|
80
|
+
clear: both;
|
|
81
|
+
height: 0;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
//main-container全局样式
|
|
86
|
+
.app-main {
|
|
87
|
+
min-height: 100%;
|
|
88
|
+
background: #f7f7f8;
|
|
89
|
+
padding: 11px 24px 11px 24px;
|
|
90
|
+
// padding-top: 12px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.app-container {
|
|
94
|
+
// padding: 20px;
|
|
95
|
+
// padding: 0px;
|
|
96
|
+
padding: 20px 24px;
|
|
97
|
+
background: #FFFFFF;
|
|
98
|
+
border-radius: 6px;
|
|
99
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
100
|
+
|
|
101
|
+
.box-card {
|
|
102
|
+
margin: 0px 0px 0px 0px;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.no-margin {
|
|
107
|
+
padding: 0px 0px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.add_form_height {
|
|
111
|
+
height: calc(100vh - 60px);
|
|
112
|
+
position: relative;
|
|
113
|
+
|
|
114
|
+
.add_form_center {
|
|
115
|
+
position: absolute;
|
|
116
|
+
top: 50%;
|
|
117
|
+
left: 50%;
|
|
118
|
+
transform: translate(-50%, -50%);
|
|
119
|
+
|
|
120
|
+
.add_form_buttomButton {
|
|
121
|
+
text-align: right;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.operation-area {
|
|
127
|
+
margin-bottom: 20px;
|
|
128
|
+
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.operation-area-chart {
|
|
132
|
+
padding-right: 24px;
|
|
133
|
+
padding-top: 24px;
|
|
134
|
+
text-align: right;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// 解决tab页签中内容多时没有滚动条问题
|
|
138
|
+
.el-tabs__content {
|
|
139
|
+
flex-grow: 1;
|
|
140
|
+
overflow-y: auto;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// 解决在edge浏览器中dialog有遮罩层 或 MessageBox的$confirm时,遮罩层偏移,导致弹框中组件元素无法操作问题。
|
|
144
|
+
// .el-dialog__wrapper、.el-message-box__wrapper、.v-modal默认position是relative,改为absolute就不会出现偏移了。
|
|
145
|
+
// dialog弹框的样式
|
|
146
|
+
.el-dialog__wrapper {
|
|
147
|
+
position: absolute;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// MessageBox的样式,必须这样修改,否则会导致点击确定、取消按钮不好用
|
|
151
|
+
.el-message-box__wrapper {
|
|
152
|
+
position: absolute;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// dialog遮罩层的样式
|
|
156
|
+
.v-modal {
|
|
157
|
+
position: absolute;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.menu-tab-container .el-tabs__item {
|
|
161
|
+
height: 48px;
|
|
162
|
+
line-height: 48px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
//顶部标签字体样式
|
|
166
|
+
.menu-tab-container .el-tabs__item.is-active {
|
|
167
|
+
color: #3D4cf2;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
//顶部标签样式
|
|
171
|
+
.menu-tab-container .el-tabs__active-bar {
|
|
172
|
+
background-color: #3D4cf2;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.el-pagination {
|
|
176
|
+
text-align: right;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.el-table td {
|
|
180
|
+
padding: 14px 0;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.el-table td,
|
|
184
|
+
.el-table th {
|
|
185
|
+
height: 40px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.el-table th {
|
|
189
|
+
padding: 0;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/**表格内容纵向分隔线去掉**/
|
|
193
|
+
.el-table--border td,
|
|
194
|
+
.el-table--border th,
|
|
195
|
+
.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
|
|
196
|
+
border-right: 0px
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/**表格标题纵向分隔线颜色调浅点儿**/
|
|
200
|
+
.el-table--border td,
|
|
201
|
+
.el-table--border th,
|
|
202
|
+
.el-table--border th.is-leaf,
|
|
203
|
+
.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
|
|
204
|
+
border-right: 1px solid #fefefe;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.selectPeopleClass {
|
|
208
|
+
color: #313233;
|
|
209
|
+
font-family: Source Han Sans CN;
|
|
210
|
+
font-weight: regular;
|
|
211
|
+
font-size: 14px;
|
|
212
|
+
line-height: 22px;
|
|
213
|
+
letter-spacing: 0px;
|
|
214
|
+
text-align: left;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.el-button+.el-button {
|
|
218
|
+
margin-left: 10px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// .el-main {
|
|
222
|
+
// padding: 0px;
|
|
223
|
+
// }
|
|
224
|
+
|
|
225
|
+
// .el-aside {
|
|
226
|
+
// margin-right: 20px;
|
|
227
|
+
// }
|
|
228
|
+
|
|
229
|
+
// .three-column-layout {
|
|
230
|
+
// height: calc(100vh - 20px);
|
|
231
|
+
|
|
232
|
+
// .el-aside {
|
|
233
|
+
// margin-right: 20px;
|
|
234
|
+
// padding-top: 20px;
|
|
235
|
+
// background-color: #FFFFFF;
|
|
236
|
+
// box-shadow: 0px 1px 8px 0px #00000019;
|
|
237
|
+
|
|
238
|
+
// }
|
|
239
|
+
|
|
240
|
+
// .el-main {
|
|
241
|
+
// padding: 20px 0 0 20px;
|
|
242
|
+
// border-radius: 6px;
|
|
243
|
+
// background: #FFFFFF;
|
|
244
|
+
// box-shadow: 0px 1px 8px 0px #00000019;
|
|
245
|
+
// }
|
|
246
|
+
// }
|
|
247
|
+
}
|
|
@@ -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
|
+
}
|