@lambo-design/shared 1.0.0-beta.17 → 1.0.0-beta.171

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 (102) hide show
  1. package/.versionrc +23 -0
  2. package/CHANGELOG.md +72 -0
  3. package/config/config.js +2 -1
  4. package/config/themes/atrovirens/atrovirens.css +564 -0
  5. package/config/themes/atrovirens/atrovirens.css.map +1 -0
  6. package/config/themes/atrovirens/atrovirens.less +656 -0
  7. package/config/themes/atrovirens/var.less +662 -0
  8. package/config/themes/blue/blue.css +564 -0
  9. package/config/themes/blue/blue.css.map +1 -0
  10. package/config/themes/blue/blue.less +657 -0
  11. package/config/themes/blue/var.css +29 -0
  12. package/config/themes/blue/var.css.map +1 -0
  13. package/config/themes/blue/var.less +663 -0
  14. package/config/themes/blue-white/blue-white.css +564 -0
  15. package/config/themes/blue-white/blue-white.css.map +1 -0
  16. package/config/themes/blue-white/blue-white.less +656 -0
  17. package/config/themes/blue-white/var.css +29 -0
  18. package/config/themes/blue-white/var.css.map +1 -0
  19. package/config/themes/blue-white/var.less +663 -0
  20. package/config/themes/blue-white-tight/blue-white-tight.css +564 -0
  21. package/config/themes/blue-white-tight/blue-white-tight.css.map +1 -0
  22. package/config/themes/blue-white-tight/blue-white-tight.less +656 -0
  23. package/config/themes/blue-white-tight/var.less +662 -0
  24. package/config/themes/deep/deep.css +564 -0
  25. package/config/themes/deep/deep.css.map +1 -0
  26. package/config/themes/deep/deep.less +655 -0
  27. package/config/themes/deep/var.less +663 -0
  28. package/config/themes/default/default.css +380 -57
  29. package/config/themes/default/default.css.map +1 -0
  30. package/config/themes/default/default.less +425 -88
  31. package/config/themes/default/var.less +361 -12
  32. package/config/themes/eap/eap.css +564 -0
  33. package/config/themes/eap/eap.css.map +1 -0
  34. package/config/themes/eap/eap.less +656 -0
  35. package/config/themes/eap/var.less +663 -0
  36. package/config/themes/gold/gold.css +564 -0
  37. package/config/themes/gold/gold.css.map +1 -0
  38. package/config/themes/gold/gold.less +656 -0
  39. package/config/themes/gold/var.less +357 -7
  40. package/config/themes/index.js +14 -4
  41. package/config/themes/lime/lime.css +564 -0
  42. package/config/themes/lime/lime.css.map +1 -0
  43. package/config/themes/lime/lime.less +656 -0
  44. package/config/themes/lime/var.less +357 -7
  45. package/config/themes/orange/orange.css +564 -0
  46. package/config/themes/orange/orange.css.map +1 -0
  47. package/config/themes/orange/orange.less +656 -0
  48. package/config/themes/orange/var.less +664 -0
  49. package/config/themes/red/red.css +564 -0
  50. package/config/themes/red/red.css.map +1 -0
  51. package/config/themes/red/red.less +656 -0
  52. package/config/themes/red/var.css +29 -0
  53. package/config/themes/red/var.css.map +1 -0
  54. package/config/themes/red/var.less +663 -0
  55. package/config/themes/theme-atrovirens.js +546 -0
  56. package/config/themes/theme-blue.js +546 -0
  57. package/config/themes/theme-bw.js +546 -0
  58. package/config/themes/theme-bwt.js +546 -0
  59. package/config/themes/theme-deep.js +546 -0
  60. package/config/themes/theme-default.js +353 -59
  61. package/config/themes/theme-eap.js +546 -0
  62. package/config/themes/theme-gold.js +305 -11
  63. package/config/themes/theme-lime.js +305 -11
  64. package/config/themes/theme-orange.js +534 -27
  65. package/config/themes/theme-red.js +538 -32
  66. package/directives/index.js +23 -0
  67. package/directives/module/draggable.js +56 -0
  68. package/directives/module/permission.js +49 -0
  69. package/index.js +3 -1
  70. package/package.json +14 -6
  71. package/plugin/index.js +12 -0
  72. package/plugin/module/date-format.js +30 -0
  73. package/plugin/module/loading.js +26 -0
  74. package/plugin/module/warn-handler.js +11 -0
  75. package/styles/image/lan_navigator.png +0 -0
  76. package/styles/image/lv_navigator.png +0 -0
  77. package/utils/ajax/interceptors.js +13 -6
  78. package/utils/assist.js +78 -10
  79. package/utils/base64.js +126 -0
  80. package/utils/crypto/aes.js +23 -0
  81. package/utils/crypto/rsa.js +16 -0
  82. package/utils/date.js +334 -305
  83. package/utils/dict/built-in-dict.js +20 -0
  84. package/utils/dict/index.js +75 -0
  85. package/utils/excel.js +369 -237
  86. package/utils/file.js +19 -0
  87. package/utils/form/validate.js +29 -0
  88. package/utils/json.js +29 -0
  89. package/utils/lodop.js +5 -0
  90. package/utils/menu/index.js +257 -11
  91. package/utils/modelerUtil.js +4 -1
  92. package/utils/number.js +72 -15
  93. package/utils/platform.js +486 -12
  94. package/utils/storage.js +198 -0
  95. package/utils/theme.js +36 -1
  96. package/utils/type.js +102 -0
  97. package/utils/util.js +787 -0
  98. package/utils/validator.js +181 -0
  99. package/config/themes/gold/default.css +0 -241
  100. package/config/themes/gold/default.less +0 -319
  101. package/config/themes/lime/default.css +0 -241
  102. package/config/themes/lime/default.less +0 -319
package/.versionrc ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "tagPrefix": "@lambo-design/shared@",
3
+ "releaseCommitMessageFormat": "chore(release): @lambo-design/shared@{{currentTag}}",
4
+ "path": ".",
5
+ "header": "# Changelog",
6
+ "types": [
7
+ {"type": "chore", "section":"'🎫 Chores | 其他更新", "hidden": false},
8
+ {"type": "revert", "section":"⏪ Reverts | 回退", "hidden": false},
9
+ {"type": "feat", "section": "✨ Features | 新功能", "hidden": false},
10
+ {"type": "fix", "section": "🐛 Bug Fixes | Bug 修复", "hidden": false},
11
+ {"type": "improvement", "section": "Feature Improvements", "hidden": false},
12
+ {"type": "docs", "section":"📝 Documentation | 文档", "hidden": false},
13
+ {"type": "style", "section":"💄 Styles | 风格", "hidden": false},
14
+ {"type": "refactor", "section":"💄 Styles | 风格", "hidden": false},
15
+ {"type": "perf", "section":"⚡ Performance Improvements | 性能优化", "hidden": false},
16
+ {"type": "test", "section":"✅ Tests | 测试", "hidden": false},
17
+ {"type": "build", "section":"👷‍ Build System | 构建", "hidden": false},
18
+ {"type": "ci", "section":"🔧 Continuous Integration | CI 配置", "hidden":false}
19
+ ],
20
+ "commitUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/{{hash}}",
21
+ "compareUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/{{previousTag}}...{{currentTag}}",
22
+ "issueUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/issues/{{id}}"
23
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,72 @@
1
+ # Changelog
2
+ ## [1.0.0-beta.171](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.170...@lambo-design/shared@1.0.0-beta.171) (2024-05-10)
3
+
4
+
5
+ ### ✨ Features | 新功能
6
+
7
+ * **@lambo-design/shared:** moment引用优化 ([a901194](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/a901194d01d01df95fa04029afbad540ab89c8e5))
8
+
9
+ ## [1.0.0-beta.170](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.169...@lambo-design/shared@1.0.0-beta.170) (2024-05-08)
10
+
11
+
12
+ ### ✨ Features | 新功能
13
+
14
+ * **@lambo-design/shared:** 修改moment引用写法 ([2d61d82](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/2d61d82a4cab800a77bbd930a16b4cdc3b5b0108))
15
+
16
+ ## [1.0.0-beta.169](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.168...@lambo-design/shared@1.0.0-beta.169) (2024-05-08)
17
+
18
+
19
+ ### ✨ Features | 新功能
20
+
21
+ * **@lambo-design/shared:** 修改moment引用写法 ([84d0867](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/84d0867eda67526ea70c3caa11317c9c60de0b43))
22
+
23
+ ## [1.0.0-beta.168](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.163...@lambo-design/shared@1.0.0-beta.168) (2024-04-29)
24
+
25
+
26
+ ### ✨ Features | 新功能
27
+
28
+ * **@lambo-design/shared:** 增加方法注释 ([b549d8e](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/b549d8e4d5125dba971cfe166f1cb6ef5648248d))
29
+
30
+ ## [1.0.0-beta.163](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.161...@lambo-design/shared@1.0.0-beta.163) (2024-04-24)
31
+
32
+
33
+ ### 💄 Styles | 风格
34
+
35
+ * **@lambo-design/shared:** 代码结构优化 ([98c6f3f](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/98c6f3ff7084c77134214d0993065f775d2ec77c))
36
+
37
+
38
+ ### ✨ Features | 新功能
39
+
40
+ * **@lambo-design/shared:** 菜单滴搭与大屏共用页面 ([abe7bbb](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/abe7bbb16618cf4cdc0353eba42f9021fc0bc97f))
41
+
42
+ ## [1.0.0-beta.161](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.160...@lambo-design/shared@1.0.0-beta.161) (2024-04-24)
43
+
44
+
45
+ ### 🐛 Bug Fixes | Bug 修复
46
+
47
+ * **@lambo-design/shared:** 修复excel导出,多级表头情况下的一些问题 ([7a8f760](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/7a8f760bba49ebe240d6afe58b4154752c8e27b6))
48
+
49
+ ## [1.0.0-beta.160](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.158...@lambo-design/shared@1.0.0-beta.160) (2024-04-23)
50
+
51
+
52
+ ### ✨ Features | 新功能
53
+
54
+ * **@lambo-design/shared:** 菜单渲染逻辑增加滴搭大屏页面 ([0bf4877](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/0bf4877c2f45350f6ee78cd0b19b05afe6b06a58))
55
+
56
+ ## [1.0.0-beta.158](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.156...@lambo-design/shared@1.0.0-beta.158) (2024-04-18)
57
+
58
+
59
+ ### ✨ Features | 新功能
60
+
61
+ * **@lambo-design/shared:** 文件相关方法迁移到file.js ([11341fe](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/11341fe74d77029bf4b1776467cb4b970c733e7b))
62
+
63
+ ## [1.0.0-beta.156](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.154...@lambo-design/shared@1.0.0-beta.156) (2024-04-16)
64
+
65
+
66
+ ### ✨ Features | 新功能
67
+
68
+ * **@lambo-design/shared:** 校验函数迁移到validator.js中 ([81d3f44](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/81d3f440e664ea52c5885b94c7def48f0bee16fc))
69
+
70
+ ## [1.0.0-beta.154](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design/shared@1.0.0-beta.153...@lambo-design/shared@1.0.0-beta.154) (2024-04-12)
71
+
72
+ ## 1.0.0-beta.153 (2024-04-12)
package/config/config.js CHANGED
@@ -18,10 +18,12 @@ let config = {
18
18
  },
19
19
  "uri": '/home'
20
20
  },
21
+ authServerContext: '/auth-server',
21
22
  upmsServerContext: '/upms-server',
22
23
  ossServerContext: '/upms-server',
23
24
  didaHost: "/dida-runtime-micro",
24
25
  didaRuntimeServerContext: "/dida-runtime-server",
26
+ fileOnlinePreviewContext: '/file-online-preview',
25
27
  mobileWidth:375,
26
28
  mobileHeight:667,
27
29
  errorMessage: '数据请求出错,请稍后尝试'
@@ -31,7 +33,6 @@ const setConfig = function (key, value) {
31
33
  };
32
34
  const registerConfig = function (configMap){
33
35
  config = Object.assign(config,configMap)
34
- console.log("config===",config)
35
36
  }
36
37
  export default config;
37
38
  export {config, setConfig, registerConfig};
@@ -0,0 +1,564 @@
1
+ /*
2
+ vxe-table
3
+ */
4
+ /*font*/
5
+ /*size*/
6
+ /*icon*/
7
+ /*color*/
8
+ /*input/radio/checkbox*/
9
+ /*popup*/
10
+ /*table*/
11
+ /*filter*/
12
+ /*menu*/
13
+ /*loading*/
14
+ /*validate*/
15
+ /*grid*/
16
+ /*toolbar*/
17
+ /*tooltip*/
18
+ /*pager*/
19
+ /*modal*/
20
+ /*checkbox*/
21
+ /*radio*/
22
+ /*button*/
23
+ /*input*/
24
+ /*textarea*/
25
+ /*form*/
26
+ /*select*/
27
+ /*switch*/
28
+ /*pulldown*/
29
+ :root {
30
+ --primary-color: #3EAF7C;
31
+ --primary-color-tint-20: #65bf96;
32
+ --primary-color-tint-90: #ecf7f2;
33
+ --primary-color-tint-80: #d8efe5;
34
+ --primary-color-tint-5: #48b383;
35
+ --primary-color-tint-95-fade-50: rgba(245, 251, 248, 0.5);
36
+ --primary-color-fade-20: rgba(62, 175, 124, 0.2);
37
+ --primary-color-shade-5: #3ba676;
38
+ --info-color: #2db7f5;
39
+ --info-color-tint-20: #57c5f7;
40
+ --info-color-tint-90: #eaf8fe;
41
+ --info-color-tint-80: #d5f1fd;
42
+ --info-color-tint-5: #38bbf6;
43
+ --info-color-tint-95-fade-50: rgba(245, 251, 254, 0.5);
44
+ --info-color-fade-20: rgba(45, 183, 245, 0.2);
45
+ --info-color-shade-5: #2baee9;
46
+ --success-color: #19be6b;
47
+ --success-color-tint-20: #47cb89;
48
+ --success-color-tint-90: #e8f9f0;
49
+ --success-color-tint-80: #d1f2e1;
50
+ --success-color-tint-5: #25c172;
51
+ --success-color-tint-95-fade-50: rgba(244, 252, 248, 0.5);
52
+ --success-color-fade-20: rgba(25, 190, 107, 0.2);
53
+ --success-color-shade-5: #18b566;
54
+ --processing-color: #3EAF7C;
55
+ --warning-color: #ff9900;
56
+ --warning-color-tint-20: #ffad33;
57
+ --warning-color-tint-90: #fff5e6;
58
+ --warning-color-tint-5: #ff9e0d;
59
+ --warning-color-tint-80: #ffebcc;
60
+ --warning-color-tint-95-fade-50: rgba(255, 250, 242, 0.5);
61
+ --warning-color-fade-20: rgba(255, 153, 0, 0.2);
62
+ --warning-color-shade-5: #f29100;
63
+ --error-color: #ed4014;
64
+ --error-color-tint-20: #f16643;
65
+ --error-color-tint-90: #fdece8;
66
+ --error-color-tint-5: #ee4a20;
67
+ --error-color-tint-80: #fbd9d0;
68
+ --error-color-tint-95-fade-50: rgba(254, 245, 243, 0.5);
69
+ --error-color-fade-20: rgba(237, 64, 20, 0.2);
70
+ --error-color-shade-5: #e13d13;
71
+ --normal-color: #e6ebf1;
72
+ --link-color: #3EAF7C;
73
+ --link-hover-color: #65bf96;
74
+ --link-active-color: #3ba676;
75
+ --selected-color: rgba(62, 175, 124, 0.9);
76
+ --selected-color-shade-10: rgba(55, 154, 109, 0.91);
77
+ --tooltip-color: #fff;
78
+ --subsidiary-color: #808695;
79
+ --rate-star-color: #f5a623;
80
+ --rate-star-color-tint-20: #f7b84f;
81
+ --white: #fff;
82
+ --black: #000;
83
+ --body-background: #fff;
84
+ --component-background: #fff;
85
+ --font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
86
+ --code-family: Consolas, Menlo, Courier, monospace;
87
+ --title-color: rgba(0, 0, 0, 0.85);
88
+ --text-color: #515a6e;
89
+ --text-color-secondary: rgba(0, 0, 0, 0.45);
90
+ --heading-color: rgba(0, 0, 0, 0.85);
91
+ --heading-color-dark: #ffffff;
92
+ --font-size-base: 14px;
93
+ --font-size-small: 12px;
94
+ --font-size-large: 16px;
95
+ --line-height-base: 1.5;
96
+ --line-height-computed: 21px;
97
+ --border-radius-base: 6px;
98
+ --border-radius-small: 4px;
99
+ --cursor-disabled: not-allowed;
100
+ --padding-lg: 24px;
101
+ --padding-md: 16px;
102
+ --padding-sm: 12px;
103
+ --padding-xs: 8px;
104
+ --border-color-base: #dcdee2;
105
+ --border-color-split: #e8eaec;
106
+ --border-width-base: 1px;
107
+ --border-style-base: solid;
108
+ --background-color-base: #f7f7f7;
109
+ --background-color-select-hover: #f3f3f3;
110
+ --tooltip-bg: rgba(70, 76, 91, 0.9);
111
+ --head-bg: #f9fafc;
112
+ --table-thead-bg: #f8f8f9;
113
+ --table-td-stripe-bg: #f8f8f9;
114
+ --table-td-hover-bg: #ebf7ff;
115
+ --table-td-highlight-bg: #ebf7ff;
116
+ --menu-dark-title: #333333;
117
+ --menu-dark-active-bg: #333333;
118
+ --menu-dark-subsidiary-color: rgba(255, 255, 255, 0.7);
119
+ --menu-dark-group-title-color: rgba(255, 255, 255, 0.36);
120
+ --date-picker-cell-hover-bg: #e1f0fe;
121
+ --shadow-color: rgba(0, 0, 0, 0.2);
122
+ --shadow-base: 0 1px 6px rgba(0, 0, 0, 0.2);
123
+ --shadow-card: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
124
+ --shadow-up: 0 -1px 6px rgba(0, 0, 0, 0.2);
125
+ --shadow-down: 0 1px 6px rgba(0, 0, 0, 0.2);
126
+ --shadow-left: -1px 0 6px rgba(0, 0, 0, 0.2);
127
+ --shadow-right: 1px 0 6px rgba(0, 0, 0, 0.2);
128
+ --btn-height-base: 32px;
129
+ --btn-height-large: 40px;
130
+ --btn-height-small: 24px;
131
+ --btn-padding-base: 0 15px;
132
+ --btn-padding-large: 0 15px;
133
+ --btn-padding-small: 0 7px;
134
+ --btn-font-weight: normal;
135
+ --btn-padding-base-icon: 5px 15px 6px;
136
+ --btn-padding-large-icon: 6px 15px 6px 15px;
137
+ --btn-padding-small-icon: 1px 7px 2px;
138
+ --btn-font-size: 14px;
139
+ --btn-font-size-large: 16px;
140
+ --btn-font-size-small: 14px;
141
+ --btn-border-radius: 4px;
142
+ --btn-border-radius-small: 3px;
143
+ --btn-group-border: #3ba676;
144
+ --btn-disable-color: #c5c8ce;
145
+ --btn-disable-bg: #f7f7f7;
146
+ --btn-disable-border: #dcdee2;
147
+ --btn-default-color: #515a6e;
148
+ --btn-default-color-tint-20: #747b8b;
149
+ --btn-default-color-shade-5: #4d5669;
150
+ --btn-default-bg: #fff;
151
+ --btn-default-bg-tint-20: #ffffff;
152
+ --btn-default-bg-shade-5: #f2f2f2;
153
+ --btn-default-border: #dcdee2;
154
+ --btn-default-border-tint-20: #e3e5e8;
155
+ --btn-default-border-shade-5: #d1d3d7;
156
+ --btn-primary-color: #fff;
157
+ --btn-primary-color-tint-20: #ffffff;
158
+ --btn-primary-color-tint-5: #ffffff;
159
+ --btn-primary-color-shade-5: #f2f2f2;
160
+ --btn-primary-bg: #3EAF7C;
161
+ --btn-primary-bg-tint-20: #65bf96;
162
+ --btn-primary-bg-tint-5: #48b383;
163
+ --btn-primary-bg-shade-5: #3ba676;
164
+ --btn-ghost-color: #515a6e;
165
+ --btn-ghost-color-tint-20: #747b8b;
166
+ --btn-ghost-color-shade-5: #4d5669;
167
+ --btn-ghost-bg: #fff;
168
+ --btn-ghost-bg-tint-20: #ffffff;
169
+ --btn-ghost-bg-shade-5: #f2f2f2;
170
+ --btn-ghost-border: #dcdee2;
171
+ --btn-ghost-border-tint-20: #e3e5e8;
172
+ --btn-ghost-border-shade-5: #d1d3d7;
173
+ --btn-circle-size: 32px;
174
+ --btn-circle-size-large: 40px;
175
+ --btn-circle-size-small: 24px;
176
+ --btn-square-size: 32px;
177
+ --btn-square-size-large: 40px;
178
+ --btn-square-size-small: 24px;
179
+ --grid-columns: 24;
180
+ --grid-gutter-width: 0;
181
+ --layout-body-background: #f5f7f9;
182
+ --layout-header-background: #333333;
183
+ --layout-header-height: 64px;
184
+ --layout-header-padding: 0 50px;
185
+ --layout-footer-padding: 24px 50px;
186
+ --layout-footer-background: #f5f7f9;
187
+ --layout-sider-background: #333333;
188
+ --layout-sider-background-tint-10: #474747;
189
+ --layout-trigger-height: 48px;
190
+ --layout-trigger-color: #fff;
191
+ --layout-zero-trigger-width: 36px;
192
+ --layout-zero-trigger-height: 42px;
193
+ --layout-color: #fff;
194
+ --layout-active-color: #3EAF7C;
195
+ --layout-header-color: rgba(255, 255, 255, 0.7);
196
+ --layout-header-active-color: #fff;
197
+ --layout-header-nav-color: rgba(255, 255, 255, 0.7);
198
+ --layout-header-nav-active-color: #fff;
199
+ --layout-header-nav-active-background-begin: rgba(255, 255, 255, 0.4);
200
+ --layout-header-nav-active-background-end: rgba(255, 255, 255, 0);
201
+ --layout-header-drop-color: rgba(255, 255, 255, 0.7);
202
+ --layout-header-drop-active-color: #fff;
203
+ --layout-header-drop-background: #333333;
204
+ --layout-header-drop-active-background: rgba(255, 255, 255, 0.2);
205
+ --layout-sider-submenu-color: rgba(255, 255, 255, 0.7);
206
+ --layout-sider-submenu-active-color: #fff;
207
+ --layout-sider-submenu-hover-color: #fff;
208
+ --layout-sider-submenu-background: #333333;
209
+ --layout-sider-submenu-active-background: #333333;
210
+ --layout-sider-submenu-hover-background: rgba(255, 255, 255, 0.2);
211
+ --layout-sider-menuitem-color: rgba(255, 255, 255, 0.7);
212
+ --layout-sider-menuitem-active-color: #fff;
213
+ --layout-sider-menuitem-hover-color: #fff;
214
+ --layout-sider-menuitem-background: #1A1A1A;
215
+ --layout-sider-menuitem-active-background: #3EAF7C;
216
+ --layout-sider-menuitem-hover-background: #3EAF7C;
217
+ --layout-sider-search-color: rgba(255, 255, 255, 0.7);
218
+ --layout-sider-search-background: #333333;
219
+ --layout-sider-search-active-color: #fff;
220
+ --layout-sider-search-active-background: rgba(255, 255, 255, 0.2);
221
+ --layout-sider-line-color: #000;
222
+ --layout-menuitem-padding: 14px 24px;
223
+ --layout-menu-title-icon-right: 24px;
224
+ --legend-color: #333333;
225
+ --input-height-base: 32px;
226
+ --input-height-large: 40px;
227
+ --input-height-small: 24px;
228
+ --input-padding-horizontal: 7px;
229
+ --input-padding-vertical-base: 4px;
230
+ --input-padding-vertical-small: 1px;
231
+ --input-padding-vertical-large: 6px;
232
+ --input-placeholder-color: #c5c8ce;
233
+ --input-color: #515a6e;
234
+ --input-border-color: #dcdee2;
235
+ --input-border-color-tint-20: #e3e5e8;
236
+ --input-border-radius: 4px;
237
+ --input-border-radius-small: 3px;
238
+ --input-bg: #fff;
239
+ --input-group-bg: #f8f8f9;
240
+ --input-hover-border-color: #3EAF7C;
241
+ --input-hover-border-color-tint-20: #65bf96;
242
+ --input-hover-border-color-fade-20: rgba(62, 175, 124, 0.2);
243
+ --input-focus-border-color: #3EAF7C;
244
+ --input-disabled-bg: #f3f3f3;
245
+ --tag-font-size: 12px;
246
+ --screen-xs: 480px;
247
+ --screen-xs-min: 480px;
248
+ --screen-xs-max: 479px;
249
+ --screen-sm: 576px;
250
+ --screen-sm-min: 576px;
251
+ --screen-sm-max: 575px;
252
+ --screen-md: 768px;
253
+ --screen-md-min: 768px;
254
+ --screen-md-max: 767px;
255
+ --screen-lg: 992px;
256
+ --screen-lg-min: 992px;
257
+ --screen-lg-max: 991px;
258
+ --screen-xl: 1200px;
259
+ --screen-xl-min: 1200px;
260
+ --screen-xl-max: 1199px;
261
+ --screen-xxl: 1600px;
262
+ --screen-xxl-min: 1600px;
263
+ --screen-xxl-max: 1599px;
264
+ --zindex-spin: 8;
265
+ --zindex-affix: 10;
266
+ --zindex-back-top: 10;
267
+ --zindex-select: 900;
268
+ --zindex-modal: 1000;
269
+ --zindex-drawer: 1000;
270
+ --zindex-message: 1010;
271
+ --zindex-notification: 1010;
272
+ --zindex-tooltip: 1060;
273
+ --zindex-transfer: 1060;
274
+ --zindex-loading-bar: 2000;
275
+ --zindex-spin-fullscreen: 2010;
276
+ --animation-time: 0.3s;
277
+ --animation-time-quick: 0.15s;
278
+ --transition-time: 0.2s;
279
+ --ease-in-out: ease-in-out;
280
+ --slider-color: #65bf96;
281
+ --slider-height: 4px;
282
+ --slider-margin: 16px 0;
283
+ --slider-button-wrap-size: 18px;
284
+ --slider-button-wrap-offset: -5px;
285
+ --slider-disabled-color: #ccc;
286
+ --avatar-size-base: 32px;
287
+ --avatar-size-lg: 40px;
288
+ --avatar-size-sm: 24px;
289
+ --avatar-font-size-base: 18px;
290
+ --avatar-font-size-lg: 24px;
291
+ --avatar-font-size-sm: 14px;
292
+ --avatar-bg: #ccc;
293
+ --avatar-color: #fff;
294
+ --avatar-border-radius: 4px;
295
+ --anchor-border-width: 2px;
296
+ --list-header-background: transparent;
297
+ --list-footer-background: transparent;
298
+ --list-empty-text-padding: 16px;
299
+ --list-item-padding: 12px 0;
300
+ --list-item-meta-margin-bottom: 16px;
301
+ --list-item-meta-avatar-margin-right: 16px;
302
+ --list-item-meta-title-margin-bottom: 12px;
303
+ --table-border-style-base: solid;
304
+ --table-header-color: #515a6e;
305
+ --table-header-font-weight: bold;
306
+ --table-header-padding-horizontal: 8px;
307
+ --table-header-padding-vertical: 0;
308
+ --table-cell-height: 48px;
309
+ --table-cell-white-space: normal;
310
+ --table-cell-padding-left: 9px;
311
+ --table-cell-padding-right: 9px;
312
+ --table-header-text-align: left;
313
+ --table-data-text-align: left;
314
+ --select-dropdown-max-height: 400px;
315
+ --tab-card-bg: #f8f8f9;
316
+ --form-item-label-font-weight: normal;
317
+ --input-wrapper-width: 95%;
318
+ --select-width: 95%;
319
+ --date-picker-width: 95%;
320
+ /*vxe-table*/
321
+ /*font*/
322
+ --vxe-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
323
+ --vxe-font-size: 14px;
324
+ --vxe-font-size-medium: 14px;
325
+ --vxe-font-size-small: 13px;
326
+ --vxe-font-size-mini: 12px;
327
+ /*size*/
328
+ --vxe-border-radius: 6px;
329
+ --vxe-border-width: 1px;
330
+ --vxe-border-style: solid;
331
+ --vxe-border-color: #dcdee2;
332
+ /*icon*/
333
+ --vxe-icon-font-family: Verdana, Arial, Tahoma;
334
+ --vxe-icon-background-color: #fff;
335
+ /*color*/
336
+ --vxe-font-color: #515a6e;
337
+ --vxe-primary-color: #3EAF7C;
338
+ --vxe-success-color: #19be6b;
339
+ --vxe-info-color: #2db7f5;
340
+ --vxe-warning-color: #ff9900;
341
+ --vxe-danger-color: #ed4014;
342
+ --vxe-font-lighten-color: #67728b;
343
+ --vxe-font-lighten-color-20: #828ca3;
344
+ --vxe-primary-lighten-color: #5bc595;
345
+ --vxe-success-lighten-color: #27e384;
346
+ --vxe-info-lighten-color: #5ec8f7;
347
+ --vxe-warning-lighten-color: #ffad33;
348
+ --vxe-danger-lighten-color: #f16743;
349
+ --vxe-font-darken-color: #3b4251;
350
+ --vxe-primary-darken-color: #318961;
351
+ --vxe-success-darken-color: #139152;
352
+ --vxe-info-darken-color: #0ba1e4;
353
+ --vxe-warning-darken-color: #cc7a00;
354
+ --vxe-danger-darken-color: #bf320f;
355
+ --vxe-font-disabled-color: #c5c8ce;
356
+ --vxe-primary-disabled-color: #81d2ad;
357
+ --vxe-success-disabled-color: #54e99e;
358
+ --vxe-info-disabled-color: #8ed8fa;
359
+ --vxe-warning-disabled-color: #ffc266;
360
+ --vxe-danger-disabled-color: #f48d73;
361
+ /*input/radio/checkbox*/
362
+ --vxe-input-border-color: #dcdee2;
363
+ --vxe-input-disabled-color: #c5c8ce;
364
+ --vxe-input-disabled-background-color: #f3f3f3;
365
+ --vxe-input-placeholder-color: #c5c8ce;
366
+ /*popup*/
367
+ --vxe-table-popup-border-color: #dcdee2;
368
+ /*table*/
369
+ --vxe-table-font-color: #515a6e;
370
+ --vxe-table-font-lighten-color-20: #828ca3;
371
+ --vxe-table-header-font-color: #515a6e;
372
+ --vxe-table-footer-font-color: #515a6e;
373
+ --vxe-table-border-radius: 6px;
374
+ --vxe-table-border-width: 1px;
375
+ --vxe-table-border-style: solid;
376
+ --vxe-table-border-color: #dcdee2;
377
+ --vxe-table-resizable-line-color: #e8eaec;
378
+ --vxe-table-resizable-drag-line-color: #3EAF7C;
379
+ --vxe-table-header-background-color: #f8f8f9;
380
+ --vxe-table-body-background-color: #fff;
381
+ --vxe-table-footer-background-color: #fff;
382
+ --vxe-table-tree-node-line-color: #909399;
383
+ --vxe-table-tree-node-line-style: dotted;
384
+ --vxe-table-header-font-weight: bold;
385
+ --vxe-table-row-height-default: 48px;
386
+ --vxe-table-row-height-medium: 44px;
387
+ --vxe-table-row-height-small: 40px;
388
+ --vxe-table-row-height-mini: 36px;
389
+ --vxe-table-row-line-height: 1.5;
390
+ --vxe-table-row-hover-background-color: #ebf7ff;
391
+ --vxe-table-row-striped-background-color: #f8f8f9;
392
+ --vxe-table-row-hover-striped-background-color: #ebf7ff;
393
+ --vxe-table-row-radio-checked-background-color: #ebf7ff;
394
+ --vxe-table-row-hover-radio-checked-background-color: #ebf7ff;
395
+ --vxe-table-row-checkbox-checked-background-color: #ebf7ff;
396
+ --vxe-table-row-hover-checkbox-checked-background-color: #ebf7ff;
397
+ --vxe-table-row-current-background-color: #ebf7ff;
398
+ --vxe-table-row-hover-current-background-color: #ebf7ff;
399
+ --vxe-table-column-padding-default: 8px 0;
400
+ --vxe-table-column-padding-medium: 6px 0;
401
+ --vxe-table-column-padding-small: 4px 0;
402
+ --vxe-table-column-padding-mini: 2px 0;
403
+ --vxe-table-column-hover-background-color: #ebf7ff;
404
+ --vxe-table-column-current-background-color: #ebf7ff;
405
+ --vxe-table-column-icon-border-color: #c0c4cc;
406
+ --vxe-table-column-icon-border-hover-color: #515A6E;
407
+ --vxe-table-column-background-image: linear-gradient(#dcdee2, #dcdee2), linear-gradient(#dcdee2, #dcdee2);
408
+ --vxe-table-cell-placeholder-color: #c5c8ce;
409
+ --vxe-table-cell-padding-left: 9px;
410
+ --vxe-table-cell-padding-right: 9px;
411
+ --vxe-table-cell-input-height-default: 42px;
412
+ --vxe-table-cell-input-height-medium: 38px;
413
+ --vxe-table-cell-input-height-small: 34px;
414
+ --vxe-table-cell-input-height-mini: 30px;
415
+ --vxe-table-cell-dirty-width: 5px;
416
+ --vxe-table-cell-dirty-update-color: #f56c6c;
417
+ --vxe-table-cell-dirty-insert-color: #19A15F;
418
+ --vxe-table-cell-area-border-color: #3EAF7C;
419
+ --vxe-table-cell-area-border-width: 1px;
420
+ --vxe-table-cell-main-area-extension-border-color: #fff;
421
+ --vxe-table-cell-main-area-extension-background-color: #3EAF7C;
422
+ --vxe-table-cell-extend-area-border-width: 2px;
423
+ --vxe-table-cell-copy-area-border-width: 3px;
424
+ --vxe-table-cell-active-area-border-width: 2px;
425
+ --vxe-table-cell-copy-area-border-color: #3EAF7C;
426
+ --vxe-table-cell-extend-area-border-color: #3EAF7C;
427
+ --vxe-table-cell-active-area-border-color: #3EAF7C;
428
+ --vxe-table-cell-area-background-color: rgba(64, 158, 255, 0.2);
429
+ --vxe-table-checkbox-range-border-width: 1px;
430
+ --vxe-table-checkbox-range-border-color: #006af1;
431
+ --vxe-table-checkbox-range-background-color: rgba(50, 128, 252, 0.2);
432
+ --vxe-table-fixed-left-scrolling-box-shadow: 8px 0px 10px -5px rgba(0, 0, 0, 0.12);
433
+ --vxe-table-fixed-right-scrolling-box-shadow: -8px 0px 10px -5px rgba(0, 0, 0, 0.12);
434
+ /*filter*/
435
+ --vxe-table-filter-panel-background-color: #fff;
436
+ /*menu*/
437
+ --vxe-table-menu-item-width: 178px;
438
+ --vxe-table-menu-background-color: #fff;
439
+ /*loading*/
440
+ --vxe-loading-color: #3EAF7C;
441
+ --vxe-loading-background-color: rgba(255, 255, 255, 0.5);
442
+ --vxe-loading-z-index: 999;
443
+ /*validate*/
444
+ --vxe-table-validate-error-color: #f56c6c;
445
+ --vxe-table-validate-tooltip-error-color: #fff;
446
+ --vxe-table-validate-tooltip-error-background-color: #f56c6c;
447
+ /*grid*/
448
+ --vxe-grid-maximize-background-color: #fff;
449
+ /*toolbar*/
450
+ --vxe-toolbar-background-color: #fff;
451
+ --vxe-toolbar-custom-active-background-color: #D9DADB;
452
+ --vxe-toolbar-panel-background-color: #fff;
453
+ /*tooltip*/
454
+ --vxe-tooltip-dark-color: #fff;
455
+ --vxe-tooltip-dark-background-color: #303133;
456
+ --vxe-tooltip-light-background-color: #fff;
457
+ /*pager*/
458
+ --vxe-pager-background-color: #fff;
459
+ --vxe-pager-perfect-background-color: #fff;
460
+ --vxe-pager-perfect-button-background-color: #f4f4f5;
461
+ /*modal*/
462
+ --vxe-modal-header-background-color: #F8F8F8;
463
+ --vxe-modal-body-background-color: #fff;
464
+ --vxe-modal-border-color: #ebeef5;
465
+ /*checkbox*/
466
+ --vxe-checkbox-font-size-default: 15px;
467
+ --vxe-checkbox-font-size-medium: 14px;
468
+ --vxe-checkbox-font-size-small: 13px;
469
+ --vxe-checkbox-font-size-mini: 12px;
470
+ --vxe-checkbox-checked-width: 0.32em;
471
+ --vxe-checkbox-checked-height: 0.64em;
472
+ --vxe-checkbox-indeterminate-width: 0.6em;
473
+ --vxe-checkbox-indeterminate-height: 2px;
474
+ --vxe-checkbox-border-width: 2px;
475
+ --vxe-checkbox-border-radius: 2px;
476
+ --vxe-checkbox-icon-background-color: #fff;
477
+ --vxe-checkbox-checked-icon-border-color: #fff;
478
+ --vxe-checkbox-indeterminate-icon-background-color: #fff;
479
+ /*radio*/
480
+ --vxe-radio-font-size-default: 15px;
481
+ --vxe-radio-font-size-medium: 14px;
482
+ --vxe-radio-font-size-small: 13px;
483
+ --vxe-radio-font-size-mini: 12px;
484
+ --vxe-radio-border-width: 2px;
485
+ --vxe-radio-icon-background-color: #fff;
486
+ --vxe-radio-checked-icon-background-color: #fff;
487
+ --vxe-radio-indeterminate-icon-background-color: #fff;
488
+ --vxe-radio-button-default-background-color: #fff;
489
+ /*button*/
490
+ --vxe-button-max-width: 500px;
491
+ --vxe-button-default-background-color: #fff;
492
+ --vxe-button-dropdown-panel-background-color: #fff;
493
+ --vxe-button-height-default: 34px;
494
+ --vxe-button-height-medium: 32px;
495
+ --vxe-button-height-small: 30px;
496
+ --vxe-button-height-mini: 28px;
497
+ --vxe-button-round-border-radius-default: 17px;
498
+ --vxe-button-round-border-radius-medium: 16px;
499
+ --vxe-button-round-border-radius-small: 15px;
500
+ --vxe-button-round-border-radius-mini: 14px;
501
+ /*input*/
502
+ --vxe-input-background-color: #fff;
503
+ --vxe-input-panel-background-color: #fff;
504
+ --vxe-input-number-disabled-color: #e4e7ed;
505
+ --vxe-input-date-festival-color: #999999;
506
+ --vxe-input-date-festival-important-color: #3EAF7C;
507
+ --vxe-input-date-notice-background-color: #FF0000;
508
+ --vxe-input-date-picker-hover-background-color: #f2f6fc;
509
+ --vxe-input-date-picker-selected-color: #fff;
510
+ --vxe-input-date-time-confirm-button-color: #fff;
511
+ --vxe-input-date-picker-festival-selected-color: #fff;
512
+ --vxe-input-date-picker-notice-selected-background-color: #fff;
513
+ --vxe-input-date-extra-color: #67c23a;
514
+ --vxe-input-date-extra-important-color: #fd2222;
515
+ --vxe-input-date-title-height-default: 30px;
516
+ --vxe-input-date-title-height-medium: 29px;
517
+ --vxe-input-date-title-height-small: 28px;
518
+ --vxe-input-date-title-height-mini: 26px;
519
+ --vxe-input-date-time-week-row-height-default: 38px;
520
+ --vxe-input-date-time-week-row-height-medium: 36px;
521
+ --vxe-input-date-time-week-row-height-small: 34px;
522
+ --vxe-input-date-time-week-row-height-mini: 32px;
523
+ --vxe-input-date-month-year-row-height-default: 48px;
524
+ --vxe-input-date-month-year-row-height-medium: 46px;
525
+ --vxe-input-date-month-year-row-height-small: 44px;
526
+ --vxe-input-date-month-year-row-height-mini: 42px;
527
+ --vxe-input-date-quarter-row-height-default: 60px;
528
+ --vxe-input-date-quarter-row-height-medium: 58px;
529
+ --vxe-input-date-quarter-row-height-small: 56px;
530
+ --vxe-input-date-quarter-row-height-mini: 54px;
531
+ --vxe-input-height-default: 34px;
532
+ --vxe-input-height-medium: 32px;
533
+ --vxe-input-height-small: 30px;
534
+ --vxe-input-height-mini: 28px;
535
+ /*textarea*/
536
+ --vxe-textarea-line-height: 1.5715;
537
+ --vxe-textarea-background-color: #fff;
538
+ /*form*/
539
+ --vxe-form-item-min-height-default: 36px;
540
+ --vxe-form-item-min-height-medium: 34px;
541
+ --vxe-form-item-min-height-small: 32px;
542
+ --vxe-form-item-min-height-mini: 30px;
543
+ --vxe-form-background-color: #fff;
544
+ --vxe-form-validate-error-color: #f56c6c;
545
+ --vxe-form-validate-error-background-color: inherit;
546
+ /*select*/
547
+ --vxe-select-option-height-default: 30px;
548
+ --vxe-select-option-height-medium: 28px;
549
+ --vxe-select-option-height-small: 26px;
550
+ --vxe-select-option-height-mini: 24px;
551
+ --vxe-select-option-hover-background-color: #f5f7fa;
552
+ --vxe-select-panel-background-color: #fff;
553
+ --vxe-select-empty-color: #C0C4CC;
554
+ --vxe-optgroup-title-color: #909399;
555
+ /*switch*/
556
+ --vxe-switch-font-color: #fff;
557
+ --vxe-switch-icon-background-color: #fff;
558
+ --vxe-switch-open-background-color: #3EAF7C;
559
+ --vxe-switch-close-background-color: rgba(0, 0, 0, 0.35);
560
+ --vxe-switch-disabled-background-color: rgba(0, 0, 0, 0.15);
561
+ /*pulldown*/
562
+ --vxe-pulldown-panel-background-color: #fff;
563
+ }
564
+ /*# sourceMappingURL=atrovirens.css.map */