imatrix-ui 0.0.15 → 0.1.1-up

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.
Files changed (171) hide show
  1. package/.vscode/extensions.json +3 -0
  2. package/README.md +7 -0
  3. package/components/dynamic-source-select/dynamic-source-select-service.js +106 -0
  4. package/components/dynamic-source-select/dynamic-source-select.vue +673 -0
  5. package/components/dynamic-source-select/events.js +77 -0
  6. package/components/fs-preview/fs-preview.vue +287 -0
  7. package/components/index.js +26 -0
  8. package/components/plugins/export-data-new.js +623 -0
  9. package/components/plugins/export-data.js +431 -0
  10. package/components/plugins/index.js +15 -0
  11. package/components/plugins/public-method.js +47 -0
  12. package/components/rich-editor/index-bak.vue +306 -0
  13. package/components/rich-editor/index.vue +236 -0
  14. package/components/rich-editor/langs/zh-Hans.js +438 -0
  15. package/components/rich-editor/viewer.vue +105 -0
  16. package/components/super-grid/apis.js +1065 -0
  17. package/components/super-grid/columns-config.vue +430 -0
  18. package/components/super-grid/custom-formatter.js +330 -0
  19. package/components/super-grid/dynamic-input.vue +1706 -0
  20. package/components/super-grid/eventBus.js +2 -0
  21. package/components/super-grid/events.js +56 -0
  22. package/components/super-grid/formValidatorUtil.js +300 -0
  23. package/components/super-grid/formatter.js +190 -0
  24. package/components/super-grid/group-column.vue +100 -0
  25. package/components/super-grid/header-context-menu.vue +82 -0
  26. package/components/super-grid/index-column.vue +69 -0
  27. package/components/super-grid/normal-column.vue +1148 -0
  28. package/components/super-grid/public-methods.js +30 -0
  29. package/components/super-grid/row-operation.vue +193 -0
  30. package/components/super-grid/search-button.vue +74 -0
  31. package/components/super-grid/search-condition-input.vue +73 -0
  32. package/components/super-grid/search-condition-list.vue +68 -0
  33. package/components/super-grid/search-form-advancedQuery.vue +820 -0
  34. package/components/super-grid/search-form-dialog.vue +77 -0
  35. package/components/super-grid/search-form-item.vue +470 -0
  36. package/components/super-grid/search-form-number.vue +111 -0
  37. package/components/super-grid/search-form-open.vue +178 -0
  38. package/components/super-grid/search-form-ordinarySearch.vue +218 -0
  39. package/components/super-grid/search-form.vue +756 -0
  40. package/components/super-grid/search-methods.js +484 -0
  41. package/components/super-grid/selection-column.vue +46 -0
  42. package/components/super-grid/store.js +3 -0
  43. package/components/super-grid/super-grid-service.js +682 -0
  44. package/components/super-grid/super-grid.vue +2893 -0
  45. package/components/super-grid/utils.js +851 -0
  46. package/components/super-grid/view-image-dialog.vue +173 -0
  47. package/components/utils/gogocodeTransfer.js +59 -0
  48. package/components/utils/utils.js +180 -0
  49. package/components/utils/value-set.js +98 -0
  50. package/components/z-test-utton/index.vue +82 -0
  51. package/package.json +29 -40
  52. package/public/index.html +13 -0
  53. package/public/vite.svg +1 -0
  54. package/src/api/sso-service.js +172 -19
  55. package/src/api/tab.js +36 -0
  56. package/src/api/user-service.js +11 -11
  57. package/src/assets/401/401.gif +0 -0
  58. package/src/assets/404/404-cloud.png +0 -0
  59. package/src/assets/404/404.png +0 -0
  60. package/src/assets/cloud.png +0 -0
  61. package/src/directives/permission/index.js +13 -13
  62. package/src/directives/permission/permission.js +20 -15
  63. package/src/i18n/i18n.js +16 -0
  64. package/src/i18n/langs/cn.js +254 -0
  65. package/src/i18n/langs/en.js +264 -0
  66. package/src/permission.js +157 -71
  67. package/src/plugins.js +18 -18
  68. package/src/router/index.js +96 -69
  69. package/src/store/getters.js +15 -10
  70. package/src/store/index.js +19 -19
  71. package/src/store/modules/app.js +54 -42
  72. package/src/store/modules/permission.js +137 -73
  73. package/src/store/modules/tab-content.js +36 -0
  74. package/src/store/modules/user.js +293 -80
  75. package/src/styles/display-layout.scss +34 -0
  76. package/src/styles/element-ui.scss +29 -29
  77. package/src/styles/index.scss +157 -78
  78. package/src/styles/mixin.scss +27 -27
  79. package/src/styles/theme/black/font-style.scss +70 -0
  80. package/src/styles/theme/black/index.scss +306 -0
  81. package/src/styles/theme/black/sidebar.scss +189 -0
  82. package/src/styles/theme/blue/font-style.scss +46 -0
  83. package/src/styles/theme/blue/index.scss +172 -0
  84. package/src/styles/{sidebar.scss → theme/blue/sidebar.scss} +171 -141
  85. package/src/styles/theme/blue2/font-style.scss +70 -0
  86. package/src/styles/theme/blue2/index.scss +188 -0
  87. package/src/styles/theme/blue2/sidebar.scss +201 -0
  88. package/src/styles/theme/dark-blue/button.scss +9 -0
  89. package/src/styles/theme/dark-blue/card.scss +62 -0
  90. package/src/styles/theme/dark-blue/checkbox.scss +10 -0
  91. package/src/styles/theme/dark-blue/dark-blue-var.scss +8 -0
  92. package/src/styles/theme/dark-blue/dialog.scss +21 -0
  93. package/src/styles/theme/dark-blue/element-variables.scss +7 -0
  94. package/src/styles/theme/dark-blue/font.scss +71 -0
  95. package/src/styles/theme/dark-blue/form.scss +51 -0
  96. package/src/styles/theme/dark-blue/index.scss +269 -0
  97. package/src/styles/theme/dark-blue/input.scss +15 -0
  98. package/src/styles/theme/dark-blue/message.scss +8 -0
  99. package/src/styles/theme/dark-blue/pagination.scss +14 -0
  100. package/src/styles/theme/dark-blue/scrollbar-style.scss +32 -0
  101. package/src/styles/theme/dark-blue/sidebar.scss +266 -0
  102. package/src/styles/theme/dark-blue/tab.scss +83 -0
  103. package/src/styles/theme/dark-blue/table.scss +60 -0
  104. package/src/styles/theme/dark-blue/tree.scss +31 -0
  105. package/src/styles/theme/dark-blue/var.scss +1028 -0
  106. package/src/styles/theme/gray/card-style.scss +54 -0
  107. package/src/styles/theme/gray/font-style.scss +70 -0
  108. package/src/styles/theme/gray/index.scss +172 -0
  109. package/src/styles/theme/gray/input-style.scss +19 -0
  110. package/src/styles/theme/gray/scrollbar-style.scss +32 -0
  111. package/src/styles/theme/gray/sidebar.scss +231 -0
  112. package/src/styles/theme/gray/tab-style.scss +81 -0
  113. package/src/styles/transition.scss +47 -46
  114. package/src/utils/auth-api.js +159 -0
  115. package/src/utils/auth.js +61 -15
  116. package/src/utils/calculator/calculator-factory-wf.js +558 -0
  117. package/src/utils/calculator/calculator-factory.js +145 -0
  118. package/src/utils/calculator/calculator-util.js +166 -0
  119. package/src/utils/common-util.js +305 -0
  120. package/src/utils/eventBus.js +2 -0
  121. package/src/utils/iconUtils.js +28 -0
  122. package/src/utils/index.js +102 -86
  123. package/src/utils/jump-page-utils.js +814 -0
  124. package/src/utils/local-storage.js +33 -31
  125. package/src/utils/menu.js +19 -0
  126. package/src/utils/permission.js +31 -26
  127. package/src/utils/permissionAuth.js +90 -0
  128. package/src/utils/range-selector.js +188 -0
  129. package/src/utils/request.js +270 -116
  130. package/src/utils/restful-interface-utils.js +57 -0
  131. package/src/utils/util.js +698 -0
  132. package/src/utils/validate.js +34 -33
  133. package/src/utils/watermark.js +108 -0
  134. package/src/utils/workflow-util.js +93 -0
  135. package/src/views/404.vue +248 -228
  136. package/src/views/dsc-component/Sidebar/Item.vue +84 -0
  137. package/src/views/dsc-component/Sidebar/Link.vue +38 -0
  138. package/src/views/dsc-component/Sidebar/SidebarItem.vue +196 -0
  139. package/src/views/dsc-component/Sidebar/index.vue +220 -0
  140. package/src/views/dsc-component/tabs/tab-content.vue +199 -0
  141. package/src/views/error-page/401.vue +106 -91
  142. package/src/views/error-page/404.vue +248 -228
  143. package/src/views/layout/EmptyLayout.vue +3 -0
  144. package/src/views/layout/Layout.vue +81 -68
  145. package/src/views/layout/NewLayout.vue +18 -0
  146. package/src/views/layout/components/AppMain.vue +39 -29
  147. package/src/views/layout/components/Breadcrumb/index.vue +156 -0
  148. package/src/views/layout/components/Menubar/Item.vue +57 -0
  149. package/src/views/layout/components/Menubar/Link.vue +38 -0
  150. package/src/views/layout/components/Menubar/SidebarItem.vue +164 -0
  151. package/src/views/layout/components/Menubar/index.vue +210 -0
  152. package/src/views/layout/components/Sidebar/Item.vue +53 -29
  153. package/src/views/layout/components/Sidebar/Link.vue +38 -39
  154. package/src/views/layout/components/Sidebar/SidebarItem.vue +135 -100
  155. package/src/views/layout/components/Sidebar/index.vue +141 -48
  156. package/src/views/layout/components/iframe-page.vue +38 -0
  157. package/src/views/layout/components/index.js +4 -3
  158. package/src/views/layout/components/tabs/tab-content.vue +207 -0
  159. package/src/views/layout/mixin/ResizeHandler.js +41 -41
  160. package/src/views/layout/tab-content-iframe-index.vue +38 -0
  161. package/src/views/layout/tab-content-index.vue +93 -0
  162. package/src/views/login/authredirect.vue +10 -10
  163. package/src/views/login/index.vue +296 -203
  164. package/src/views/login/update-password.vue +243 -0
  165. package/src/views/redirect/index.vue +14 -12
  166. package/src/views/wf-history/tache-subprocess-history.vue +45 -0
  167. package/vite.config.js +31 -0
  168. package/lib/super-ui.css +0 -1
  169. package/lib/super-ui.umd.min.js +0 -2
  170. package/src/styles/variables.scss +0 -4
  171. package/src/views/layout/components/Navbar.vue +0 -92
@@ -0,0 +1,201 @@
1
+ .blue2 {
2
+ $menuBg: #fafafa;
3
+ $subMenuBg: #fdfdfd;
4
+ $menuHover: rgb(207, 234, 250);
5
+
6
+ #app {
7
+
8
+ // $topHeight: 50px;
9
+ // 主体区域
10
+ .main-container {
11
+ height: 100%;
12
+ transition: margin-left .28s;
13
+ margin-left: 224px;
14
+ position: relative;
15
+ }
16
+
17
+ // 侧边栏
18
+ .sidebar-container {
19
+ transition: width 0.28s;
20
+ width: 224px !important;
21
+ height: 100%;
22
+ position: fixed;
23
+ top: 0;
24
+ bottom: 0;
25
+ left: 0;
26
+ z-index: 1001;
27
+ overflow: hidden;
28
+ font-size: 16px;
29
+ font-family: SourceHanSansCN-Regular, SourceHanSansCN;
30
+ font-weight: 400;
31
+ color: #4A4A4A;
32
+ line-height: 16px;
33
+ background: #eee;
34
+ box-shadow: 0px 2px 8px 0px rgba(164, 178, 201, 0.4);
35
+
36
+ //reset element-ui css
37
+ .horizontal-collapse-transition {
38
+ transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
39
+ }
40
+
41
+ .el-scrollbar__bar.is-vertical {
42
+ right: 0px;
43
+ }
44
+
45
+ .scrollbar-wrapper {
46
+ overflow-x: hidden !important;
47
+
48
+ .el-scrollbar__view {
49
+ height: calc(100vh - 70px);
50
+ }
51
+
52
+ .system-item {
53
+ padding-left: 10px;
54
+ font-size: medium;
55
+ font-weight: 600;
56
+ opacity: 0.8;
57
+ cursor: default;
58
+ }
59
+ }
60
+
61
+ .hamburger-container {
62
+ line-height: 58px;
63
+ height: 58px;
64
+ background-color: #F9F9F9;
65
+ // float: left;
66
+ padding: 0 20px;
67
+ }
68
+
69
+ .is-horizontal {
70
+ display: none;
71
+ }
72
+
73
+ a {
74
+ display: inline-block;
75
+ width: 100%;
76
+ overflow: hidden;
77
+ }
78
+
79
+ .svg-icon {
80
+ margin-right: 16px;
81
+ }
82
+
83
+ .el-menu {
84
+ border: none;
85
+ height: 100%;
86
+ width: 100% !important;
87
+ background-color: #eee;
88
+ color: #4A4A4A
89
+ }
90
+
91
+ .is-active>.el-submenu__title {
92
+ color: #4A4A4A !important;
93
+ }
94
+ }
95
+
96
+ .hideSidebar {
97
+ .sidebar-container {
98
+ width: 54px !important;
99
+ }
100
+
101
+ .main-container {
102
+ margin-left: 54px;
103
+ }
104
+
105
+ .submenu-title-noDropdown {
106
+ padding-left: 20px !important;
107
+ position: relative;
108
+
109
+ .el-tooltip {
110
+ padding: 0 20px !important;
111
+ }
112
+ }
113
+
114
+ .el-submenu {
115
+ overflow: hidden;
116
+
117
+ &>.el-submenu__title {
118
+ padding-left: 20px !important;
119
+
120
+ .el-submenu__icon-arrow {
121
+ display: none;
122
+ }
123
+ }
124
+ }
125
+
126
+ .el-menu--collapse {
127
+ .el-submenu {
128
+ &>.el-submenu__title {
129
+ &>span {
130
+ height: 0;
131
+ width: 0;
132
+ overflow: hidden;
133
+ visibility: hidden;
134
+ display: inline-block;
135
+ }
136
+ }
137
+ }
138
+ }
139
+ }
140
+
141
+ .sidebar-container .nest-menu .el-submenu>.el-submenu__title,
142
+ .sidebar-container .el-submenu .el-menu-item {
143
+ min-width: 224px !important;
144
+ background-color: $subMenuBg !important;
145
+
146
+ &:hover {
147
+ background-color: $menuHover !important;
148
+ }
149
+ }
150
+
151
+ .el-menu--collapse .el-menu .el-submenu {
152
+ min-width: 224px !important;
153
+ }
154
+
155
+ .sidebar-container .el-menu .menu-wrapper .is-active,
156
+ .sidebar-container .el-submenu .el-menu .is-active {
157
+ background-color: #FFF3CB !important;
158
+ color: #4A4A4A
159
+ }
160
+
161
+ .sidebar-container .el-menu .menu-wrapper .is-opened,
162
+ .sidebar-container .el-submenu .el-menu .is-opened {
163
+ background-color: #eee !important;
164
+ }
165
+
166
+ //适配移动端
167
+ .mobile {
168
+ .main-container {
169
+ margin-left: 0px;
170
+ }
171
+
172
+ .sidebar-container {
173
+ transition: transform .28s;
174
+ width: 224px !important;
175
+ }
176
+
177
+ &.hideSidebar {
178
+ .sidebar-container {
179
+ transition-duration: 0.3s;
180
+ transform: translate3d(-224px, 0, 0);
181
+ }
182
+ }
183
+ }
184
+
185
+ .withoutAnimation {
186
+
187
+ .main-container,
188
+ .sidebar-container {
189
+ transition: none;
190
+ }
191
+ }
192
+ }
193
+
194
+ .el-menu--vertical {
195
+ &>.el-menu {
196
+ .svg-icon {
197
+ margin-right: 16px;
198
+ }
199
+ }
200
+ }
201
+ }
@@ -0,0 +1,9 @@
1
+ @import "./dark-blue-var.scss";
2
+
3
+ .dark-blue {
4
+ .operation-area .el-button--primary {
5
+ border-radius: 4px;
6
+ background: $--button-opt-background-color;
7
+ border-color: $--button-opt-background-color;
8
+ }
9
+ }
@@ -0,0 +1,62 @@
1
+ .dark-blue {
2
+ $titleColor: rgba(0, 0, 0, 0.85);
3
+
4
+ el-card box-card is-always-shadow .card-radius {
5
+ border-radius: 12px
6
+ }
7
+
8
+ .form-card-header {
9
+ width: 3px;
10
+ height: 14px;
11
+ left: 0;
12
+ align-items: center;
13
+ text-align: center;
14
+ }
15
+
16
+ .form-card-header-bgc {
17
+ width: 3px;
18
+ height: 14px;
19
+ display: flex;
20
+ background-color: #3D4CF2
21
+ }
22
+
23
+ .form-card-text {
24
+ padding-left: 8px;
25
+ font-size: 16px;
26
+ line-height: 24px;
27
+ font-weight: 500;
28
+ color: $titleColor;
29
+ display: table-cell;
30
+ position: relative;
31
+ }
32
+
33
+ .superForm {
34
+ .el-card {
35
+ border-radius: 12px;
36
+ box-shadow: 0 1px 4px 0 rgba(0, 13, 31, 0.10);
37
+ }
38
+
39
+
40
+ }
41
+
42
+
43
+ .platform-card {
44
+ .el-card__header {
45
+ height: 40px;
46
+ background: #F0F8FE;
47
+ color: #005EBA;
48
+ font-family: Source Han Sans CN;
49
+ font-weight: medium;
50
+ font-size: 14px;
51
+ text-align: left;
52
+ padding: 9px 0px 9px 20px;
53
+ }
54
+
55
+ .el-card__header>div {
56
+ line-height: 22px;
57
+ }
58
+ }
59
+ .card-style {
60
+ margin-top: 20px;
61
+ }
62
+ }
@@ -0,0 +1,10 @@
1
+ @import "./dark-blue-var.scss";
2
+
3
+ .dark-blue {
4
+
5
+ .el-checkbox__input.is-checked .el-checkbox__inner,
6
+ .el-checkbox__input.is-indeterminate .el-checkbox__inner {
7
+ background-color: $--color-primary;
8
+ border-color: $--color-primary;
9
+ }
10
+ }
@@ -0,0 +1,8 @@
1
+ /* 改变主题色变量 */
2
+ $--color-primary: #005EBA;
3
+ $--button-default-border-color: $--color-primary;
4
+ $--button-default-font-color: $--color-primary;
5
+ $--button-font-weight: regular;
6
+ $--button-default-font-color: $--color-primary;
7
+ $--button-opt-background-color:#0780ED;
8
+ $th-cell-background: #F0F8FE;
@@ -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,7 @@
1
+ @import "./dark-blue-var.scss";
2
+
3
+ .dark-blue {
4
+ /* 改变 icon 字体路径变量,必需 */
5
+ $--font-path: '~element-plus/lib/theme-chalk/fonts';
6
+ @import '~element-plus/lib/theme-chalk/index.css';
7
+ }
@@ -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,269 @@
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
+ @import './message.scss';
16
+
17
+
18
+ .dark-blue {
19
+ font-family: Source Han Sans CN;
20
+ font-size: 14px;
21
+ color: rgba(0, 0, 0, 0.85);
22
+ -moz-osx-font-smoothing: grayscale;
23
+ -webkit-font-smoothing: antialiased;
24
+ text-rendering: optimizeLegibility;
25
+ height: 100%;
26
+
27
+ .el-button {
28
+ font-family: Source Han Sans CN;
29
+ }
30
+
31
+ .fl {
32
+ float: left;
33
+ }
34
+
35
+ .fr {
36
+ float: right;
37
+ }
38
+
39
+
40
+ html {
41
+ height: 100%;
42
+ box-sizing: border-box;
43
+ }
44
+
45
+ #app {
46
+ height: 100%;
47
+ }
48
+
49
+ a,
50
+ a:focus,
51
+ a:hover {
52
+ cursor: pointer;
53
+ color: inherit;
54
+ outline: none;
55
+ text-decoration: none;
56
+ }
57
+
58
+ div:focus {
59
+ outline: none;
60
+ }
61
+
62
+ a:focus,
63
+ a:active {
64
+ outline: none;
65
+ }
66
+
67
+ a,
68
+ a:focus,
69
+ a:hover {
70
+ cursor: pointer;
71
+ color: inherit;
72
+ text-decoration: none;
73
+ }
74
+
75
+ .clearfix {
76
+ &:after {
77
+ visibility: hidden;
78
+ display: block;
79
+ font-size: 0;
80
+ content: " ";
81
+ clear: both;
82
+ height: 0;
83
+ }
84
+ }
85
+
86
+ //main-container全局样式
87
+ .app-main {
88
+ min-height: 100vh;
89
+ background: #f7f7f8;
90
+ padding: 11px 24px 11px 24px;
91
+ // padding-top: 12px;
92
+ }
93
+
94
+ .app-container {
95
+ // padding: 20px;
96
+ // padding: 0px;
97
+ padding: 20px 24px;
98
+ background: #FFFFFF;
99
+ border-radius: 6px;
100
+ box-shadow: 0px 1px 8px 0px #00000019;
101
+
102
+ .box-card {
103
+ margin: 0px 0px 0px 0px;
104
+ }
105
+ }
106
+
107
+ .no-margin {
108
+ padding: 0px 0px;
109
+ }
110
+
111
+ .add_form_height {
112
+ height: calc(100vh - 60px);
113
+ position: relative;
114
+
115
+ .add_form_center {
116
+ position: absolute;
117
+ top: 50%;
118
+ left: 50%;
119
+ transform: translate(-50%, -50%);
120
+ height: auto;
121
+ .add_form_buttomButton {
122
+ text-align: right;
123
+ }
124
+ }
125
+ }
126
+
127
+ .operation-area {
128
+ margin-bottom: 20px;
129
+ }
130
+
131
+ /**
132
+ * @description: 工具栏布局
133
+ * @Date: 2023-07-17 15:48:04
134
+ * @param {*}
135
+ * @return {*}
136
+ */
137
+ .toolbar_flex{
138
+ display: flex;
139
+ justify-content: space-between;
140
+ .list_toolbar_page_style{
141
+ text-align: right;
142
+ }
143
+ }
144
+
145
+ .operation-area-chart {
146
+ padding-right: 24px;
147
+ padding-top: 24px;
148
+ text-align: right;
149
+ }
150
+
151
+ // 解决tab页签中内容多时没有滚动条问题
152
+ .el-tabs__content {
153
+ flex-grow: 1;
154
+ overflow-y: auto;
155
+ }
156
+
157
+ // 解决在edge浏览器中dialog有遮罩层 或 MessageBox的$confirm时,遮罩层偏移,导致弹框中组件元素无法操作问题。
158
+ // .el-dialog__wrapper、.el-message-box__wrapper、.v-modal默认position是relative,改为absolute就不会出现偏移了。
159
+ // dialog弹框的样式
160
+ .el-dialog__wrapper {
161
+ position: absolute;
162
+ }
163
+
164
+ // MessageBox的样式,必须这样修改,否则会导致点击确定、取消按钮不好用
165
+ .el-message-box__wrapper {
166
+ position: absolute;
167
+ }
168
+
169
+ // dialog遮罩层的样式
170
+ .v-modal {
171
+ position: absolute;
172
+ }
173
+
174
+ .menu-tab-container .el-tabs__item {
175
+ height: 48px;
176
+ line-height: 48px;
177
+ }
178
+
179
+ //顶部标签字体样式
180
+ .menu-tab-container .el-tabs__item.is-active {
181
+ color: #3D4cf2;
182
+ }
183
+
184
+ //顶部标签样式
185
+ .menu-tab-container .el-tabs__active-bar {
186
+ background-color: #3D4cf2;
187
+ }
188
+
189
+ .el-pagination {
190
+ text-align: right;
191
+ }
192
+
193
+ .el-table td {
194
+ padding: 14px 0;
195
+ }
196
+
197
+ .el-table td,
198
+ .el-table th {
199
+ height: 40px;
200
+ }
201
+
202
+ .el-table th {
203
+ padding: 0;
204
+ }
205
+
206
+ /**表格内容纵向分隔线去掉**/
207
+ .el-table--border td,
208
+ .el-table--border th,
209
+ .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
210
+ border-right: 0px
211
+ }
212
+
213
+ /**表格标题纵向分隔线颜色调浅点儿**/
214
+ .el-table--border td,
215
+ .el-table--border th,
216
+ .el-table--border th.is-leaf,
217
+ .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
218
+ border-right: 1px solid #fefefe;
219
+ }
220
+
221
+ .selectPeopleClass {
222
+ color: #313233;
223
+ font-family: Source Han Sans CN;
224
+ font-weight: regular;
225
+ font-size: 14px;
226
+ line-height: 22px;
227
+ letter-spacing: 0px;
228
+ text-align: left;
229
+ }
230
+
231
+ .el-button+.el-button {
232
+ margin-left: 10px;
233
+ }
234
+
235
+ // .el-main {
236
+ // padding: 0px;
237
+ // }
238
+
239
+ // .el-aside {
240
+ // margin-right: 20px;
241
+ // }
242
+
243
+ // .three-column-layout {
244
+ // height: calc(100vh - 20px);
245
+
246
+ // .el-aside {
247
+ // margin-right: 20px;
248
+ // padding-top: 20px;
249
+ // background-color: #FFFFFF;
250
+ // box-shadow: 0px 1px 8px 0px #00000019;
251
+
252
+ // }
253
+
254
+ // .el-main {
255
+ // padding: 20px 0 0 20px;
256
+ // border-radius: 6px;
257
+ // background: #FFFFFF;
258
+ // box-shadow: 0px 1px 8px 0px #00000019;
259
+ // }
260
+ // }
261
+
262
+ // 清除 app-container 类样式
263
+ .clear_app_container {
264
+ padding: 0;
265
+ background: transparent;
266
+ border-radius: 0;
267
+ box-shadow: 0 0px 0px #ccc;
268
+ }
269
+ }