imatrix-ui 2.8.2-dw → 2.8.2-tmp2

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 (53) hide show
  1. package/lib/super-ui.css +1 -1
  2. package/lib/super-ui.umd.min.js +5 -35
  3. package/package.json +4 -2
  4. package/src/i18n/i18n.js +1 -1
  5. package/src/i18n/langs/cn.js +10 -5
  6. package/src/i18n/langs/en.js +10 -5
  7. package/src/permission.js +7 -3
  8. package/src/plugins.js +3 -3
  9. package/src/router/index.js +24 -0
  10. package/src/store/getters.js +2 -1
  11. package/src/store/modules/app.js +10 -1
  12. package/src/store/modules/permission.js +5 -0
  13. package/src/store/modules/user.js +50 -19
  14. package/src/styles/display-layout.scss +34 -0
  15. package/src/styles/index.scss +53 -0
  16. package/src/styles/theme/dark-blue/button.scss +9 -0
  17. package/src/styles/theme/dark-blue/card.scss +64 -0
  18. package/src/styles/theme/dark-blue/checkbox.scss +10 -0
  19. package/src/styles/theme/dark-blue/dark-blue-var.scss +8 -0
  20. package/src/styles/theme/dark-blue/dialog.scss +21 -0
  21. package/src/styles/theme/dark-blue/element-variables.scss +7 -0
  22. package/src/styles/theme/dark-blue/font.scss +71 -0
  23. package/src/styles/theme/dark-blue/form.scss +51 -0
  24. package/src/styles/theme/dark-blue/index.scss +247 -0
  25. package/src/styles/theme/dark-blue/input.scss +15 -0
  26. package/src/styles/theme/dark-blue/pagination.scss +14 -0
  27. package/src/styles/theme/dark-blue/scrollbar-style.scss +32 -0
  28. package/src/styles/theme/dark-blue/sidebar.scss +296 -0
  29. package/src/styles/theme/dark-blue/tab.scss +83 -0
  30. package/src/styles/theme/dark-blue/table.scss +60 -0
  31. package/src/styles/theme/dark-blue/tree.scss +31 -0
  32. package/src/styles/theme/dark-blue/var.scss +1028 -0
  33. package/src/styles/theme/gray/form-style.scss +2 -2
  34. package/src/styles/theme/gray/input-style.scss +8 -0
  35. package/src/utils/auth-api.js +115 -0
  36. package/src/utils/auth.js +43 -30
  37. package/src/utils/calculator/calculator-factory.js +2 -2
  38. package/src/utils/common-util.js +34 -0
  39. package/src/utils/jump-page-utils.js +29 -5
  40. package/src/utils/menu.js +19 -0
  41. package/src/utils/permission.js +4 -0
  42. package/src/utils/permissionAuth.js +48 -1
  43. package/src/utils/request.js +18 -2
  44. package/src/utils/util.js +23 -6
  45. package/src/views/404.vue +14 -10
  46. package/src/views/dsc-component/Sidebar/Item.vue +3 -3
  47. package/src/views/dsc-component/Sidebar/Link.vue +11 -2
  48. package/src/views/dsc-component/Sidebar/SidebarItem.vue +36 -21
  49. package/src/views/dsc-component/Sidebar/index.vue +12 -7
  50. package/src/views/dsc-component/tabs/tab-content.vue +11 -0
  51. package/src/views/error-page/404.vue +6 -6
  52. package/src/views/layout/components/Menubar/index.vue +5 -3
  53. package/src/views/login/index.vue +1 -1
@@ -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
+ }