vxe-table 4.2.5 → 4.2.6-beta.2

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 (93) hide show
  1. package/es/form/src/form.js +8 -9
  2. package/es/form/style.css +2 -1
  3. package/es/grid/src/grid.js +1 -1
  4. package/es/list/src/list.js +8 -9
  5. package/es/loading/index.js +7 -0
  6. package/es/loading/src/loading.js +31 -0
  7. package/es/locale/lang/en-US.js +3 -0
  8. package/es/locale/lang/ja-JP.js +3 -0
  9. package/es/locale/lang/zh-CN.js +3 -0
  10. package/es/locale/lang/zh-TC.js +3 -0
  11. package/es/modal/src/modal.js +22 -14
  12. package/es/modal/style.css +1 -1
  13. package/es/select/style.css +0 -64
  14. package/es/style.css +1 -1
  15. package/es/style.min.css +1 -1
  16. package/es/table/src/table.js +5 -9
  17. package/es/table/style.css +0 -63
  18. package/es/tools/log.js +1 -1
  19. package/es/v-x-e-table/index.js +1 -1
  20. package/es/v-x-e-table/src/conf.js +3 -0
  21. package/es/v-x-e-table/style.css +558 -0
  22. package/lib/form/src/form.js +10 -7
  23. package/lib/form/src/form.min.js +1 -1
  24. package/lib/form/style/style.css +2 -1
  25. package/lib/form/style/style.min.css +1 -1
  26. package/lib/grid/src/grid.js +1 -1
  27. package/lib/grid/src/grid.min.js +1 -1
  28. package/lib/index.umd.js +93 -36
  29. package/lib/index.umd.min.js +1 -1
  30. package/lib/list/src/list.js +10 -7
  31. package/lib/list/src/list.min.js +1 -1
  32. package/lib/loading/index.js +19 -0
  33. package/lib/loading/index.min.js +1 -0
  34. package/lib/loading/src/loading.js +39 -0
  35. package/lib/loading/src/loading.min.js +1 -0
  36. package/lib/locale/lang/en-US.js +3 -0
  37. package/lib/locale/lang/en-US.min.js +1 -1
  38. package/lib/locale/lang/en-US.umd.js +3 -0
  39. package/lib/locale/lang/ja-JP.js +3 -0
  40. package/lib/locale/lang/ja-JP.min.js +1 -1
  41. package/lib/locale/lang/ja-JP.umd.js +3 -0
  42. package/lib/locale/lang/zh-CN.js +3 -0
  43. package/lib/locale/lang/zh-CN.min.js +1 -1
  44. package/lib/locale/lang/zh-CN.umd.js +3 -0
  45. package/lib/locale/lang/zh-HK.min.js +1 -1
  46. package/lib/locale/lang/zh-HK.umd.js +3 -0
  47. package/lib/locale/lang/zh-MO.min.js +1 -1
  48. package/lib/locale/lang/zh-MO.umd.js +3 -0
  49. package/lib/locale/lang/zh-TC.js +3 -0
  50. package/lib/locale/lang/zh-TC.min.js +1 -1
  51. package/lib/locale/lang/zh-TC.umd.js +3 -0
  52. package/lib/locale/lang/zh-TW.min.js +1 -1
  53. package/lib/locale/lang/zh-TW.umd.js +3 -0
  54. package/lib/modal/src/modal.js +25 -12
  55. package/lib/modal/src/modal.min.js +1 -1
  56. package/lib/modal/style/style.css +1 -1
  57. package/lib/modal/style/style.min.css +1 -1
  58. package/lib/select/style/style.css +0 -64
  59. package/lib/select/style/style.min.css +1 -1
  60. package/lib/style.css +1 -1
  61. package/lib/style.min.css +1 -1
  62. package/lib/table/src/table.js +6 -7
  63. package/lib/table/src/table.min.js +1 -1
  64. package/lib/table/style/style.css +0 -63
  65. package/lib/table/style/style.min.css +1 -1
  66. package/lib/tools/log.js +1 -1
  67. package/lib/tools/log.min.js +1 -1
  68. package/lib/v-x-e-table/index.js +1 -1
  69. package/lib/v-x-e-table/index.min.js +1 -1
  70. package/lib/v-x-e-table/src/conf.js +3 -0
  71. package/lib/v-x-e-table/src/conf.min.js +1 -1
  72. package/lib/v-x-e-table/style/style.css +558 -0
  73. package/lib/v-x-e-table/style/style.min.css +1 -0
  74. package/package.json +1 -1
  75. package/packages/form/src/form.ts +8 -9
  76. package/packages/grid/src/grid.ts +1 -1
  77. package/packages/list/src/list.ts +8 -9
  78. package/packages/loading/index.ts +10 -0
  79. package/packages/loading/src/loading.ts +32 -0
  80. package/packages/locale/lang/en-US.ts +3 -0
  81. package/packages/locale/lang/ja-JP.ts +3 -0
  82. package/packages/locale/lang/zh-CN.ts +3 -0
  83. package/packages/locale/lang/zh-TC.ts +3 -0
  84. package/packages/modal/src/modal.ts +21 -14
  85. package/packages/table/src/table.ts +5 -9
  86. package/packages/v-x-e-table/src/conf.ts +4 -0
  87. package/styles/form.scss +1 -0
  88. package/styles/{base/loading.scss → loading.scss} +17 -4
  89. package/styles/modal.scss +1 -1
  90. package/styles/modules.scss +1 -0
  91. package/styles/select.scss +0 -1
  92. package/styles/table.scss +0 -1
  93. package/styles/v-x-e-table.scss +2 -0
@@ -29,6 +29,7 @@ import TableBodyComponent from './body';
29
29
  import TableHeaderComponent from '../../header';
30
30
  import tableProps from './props';
31
31
  import tableEmits from './emits';
32
+ import VxeLoading from '../../loading/index';
32
33
  import { getRowUniqueId, clearTableAllStatus, getRowkey, getRowid, rowToVisible, colToVisible, getCellValue, setCellValue, handleFieldOrColumn, toTreePathSeq, restoreScrollLocation, restoreScrollListener } from './util';
33
34
  var isWebkit = browse['-webkit'] && !browse.edge;
34
35
  var resizableStorageKey = 'VXE_TABLE_CUSTOM_COLUMN_WIDTH';
@@ -6037,15 +6038,10 @@ export default defineComponent({
6037
6038
  /**
6038
6039
  * 加载中
6039
6040
  */
6040
- h('div', {
6041
- class: ['vxe-table--loading vxe-loading', {
6042
- 'is--visible': loading
6043
- }]
6044
- }, [
6045
- h('div', {
6046
- class: 'vxe-loading--spinner'
6047
- })
6048
- ]),
6041
+ h(VxeLoading, {
6042
+ class: 'vxe-table--loading',
6043
+ loading: loading
6044
+ }),
6049
6045
  /**
6050
6046
  * 筛选
6051
6047
  */
@@ -308,69 +308,6 @@
308
308
  .is--animat .vxe-radio > input:checked + span {
309
309
  transition: background-color 0.1s ease-in-out; }
310
310
 
311
- /*加载中*/
312
- .vxe-loading {
313
- display: none;
314
- position: absolute;
315
- width: 100%;
316
- height: 100%;
317
- top: 0;
318
- left: 0;
319
- z-index: 99;
320
- -webkit-user-select: none;
321
- -moz-user-select: none;
322
- -ms-user-select: none;
323
- user-select: none;
324
- background-color: rgba(0, 0, 0, 0.2); }
325
- .vxe-loading.is--visible {
326
- display: block; }
327
- .vxe-loading .vxe-loading--spinner {
328
- width: 56px;
329
- height: 56px;
330
- position: absolute;
331
- top: 50%;
332
- left: 50%;
333
- transform: translate(-50%, -50%); }
334
- .vxe-loading .vxe-loading--spinner:before, .vxe-loading .vxe-loading--spinner:after {
335
- content: "";
336
- width: 100%;
337
- height: 100%;
338
- border-radius: 50%;
339
- background-color: #409eff;
340
- opacity: 0.6;
341
- position: absolute;
342
- top: 0;
343
- left: 0;
344
- -webkit-animation: bounce 2.0s infinite ease-in-out;
345
- animation: bounce 2.0s infinite ease-in-out; }
346
- .vxe-loading .vxe-loading--spinner:after {
347
- -webkit-animation-delay: -1.0s;
348
- animation-delay: -1.0s; }
349
-
350
- @-webkit-keyframes bounce {
351
- 0%, 100% {
352
- transform: scale(0); }
353
- 50% {
354
- transform: scale(1); } }
355
-
356
- @keyframes bounce {
357
- 0%, 100% {
358
- transform: scale(0); }
359
- 50% {
360
- transform: scale(1); } }
361
-
362
- .size--mini .vxe-loading .vxe-loading--spinner {
363
- width: 38px;
364
- height: 38px; }
365
-
366
- .size--small .vxe-loading .vxe-loading--spinner {
367
- width: 44px;
368
- height: 44px; }
369
-
370
- .size--medium .vxe-loading .vxe-loading--spinner {
371
- width: 50px;
372
- height: 50px; }
373
-
374
311
  .vxe-table--render-default.vxe-editable .vxe-body--column, .vxe-table--render-default .vxe-header--column.col--ellipsis,
375
312
  .vxe-table--render-default .vxe-body--column.col--ellipsis,
376
313
  .vxe-table--render-default .vxe-footer--column.col--ellipsis {
package/es/tools/log.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import GlobalConfig from '../v-x-e-table/src/conf';
2
2
  export function getLog(message, params) {
3
- return "[vxe-table v" + "4.2.5-beta.0" + "] " + GlobalConfig.i18n(message, params);
3
+ return "[vxe-table v" + "4.2.6-beta.1" + "] " + GlobalConfig.i18n(message, params);
4
4
  }
5
5
  function outLog(type) {
6
6
  return function (message, params) {
@@ -83,7 +83,7 @@ export var config = new VXETableConfig();
83
83
  export var v = 'v4';
84
84
  export var VXETable = {
85
85
  v: v,
86
- version: "4.2.5-beta.0",
86
+ version: "4.2.6-beta.1",
87
87
  setup: setup,
88
88
  interceptor: interceptor,
89
89
  renderer: renderer,
@@ -5,6 +5,7 @@ var GlobalConfig = {
5
5
  version: 0,
6
6
  // resizeInterval: 500,
7
7
  emptyCell: ' ',
8
+ loadingText: null,
8
9
  table: {
9
10
  fit: true,
10
11
  showHeader: true,
@@ -122,6 +123,8 @@ var GlobalConfig = {
122
123
  types: {}
123
124
  },
124
125
  icon: {
126
+ // loading
127
+ // LOADING: iconPrefix + 'refresh roll vxe-loading--default-icon',
125
128
  // table
126
129
  TABLE_SORT_ASC: iconPrefix + 'caret-top',
127
130
  TABLE_SORT_DESC: iconPrefix + 'caret-bottom',
@@ -1,3 +1,4 @@
1
+ @charset "UTF-8";
1
2
  /*font*/
2
3
  /*size*/
3
4
  /*icon*/
@@ -23,3 +24,560 @@
23
24
  /*select*/
24
25
  /*switch*/
25
26
  /*pulldown*/
27
+ /**Variable**/
28
+ [class*="vxe-icon--"] {
29
+ display: inline-block;
30
+ vertical-align: middle;
31
+ position: relative;
32
+ direction: ltr;
33
+ font-family: Verdana, Arial, Tahoma;
34
+ font-weight: normal;
35
+ -webkit-user-select: none;
36
+ -moz-user-select: none;
37
+ -ms-user-select: none;
38
+ user-select: none; }
39
+ [class*="vxe-icon--"].rotate45 {
40
+ transform: rotate(45deg); }
41
+ [class*="vxe-icon--"].rotate90 {
42
+ transform: rotate(90deg); }
43
+ [class*="vxe-icon--"].rotate180 {
44
+ transform: rotate(180deg); }
45
+
46
+ .vxe-icon--square, .vxe-icon--zoomin, .vxe-icon--zoomout, .vxe-icon--menu, .vxe-icon--caret-top, .vxe-icon--caret-bottom, .vxe-icon--caret-left, .vxe-icon--caret-right, .vxe-icon--arrow-top, .vxe-icon--arrow-bottom, .vxe-icon--arrow-left, .vxe-icon--arrow-right, .vxe-icon--d-arrow-left, .vxe-icon--d-arrow-right, .vxe-icon--funnel, .vxe-icon--edit-outline, .vxe-icon--more, .vxe-icon--plus, .vxe-icon--check, .vxe-icon--close, .vxe-icon--minus, .vxe-icon--refresh, .vxe-icon--question, .vxe-icon--info, .vxe-icon--warning, .vxe-icon--success, .vxe-icon--circle-plus, .vxe-icon--remove, .vxe-icon--error, .vxe-icon--upload,
47
+ .vxe-icon--download, .vxe-icon--eye,
48
+ .vxe-icon--eye-slash, .vxe-icon--calendar, .vxe-icon--dot, .vxe-icon--print, .vxe-icon--search {
49
+ width: 1em;
50
+ height: 1em;
51
+ line-height: 1em; }
52
+
53
+ .vxe-icon--square:before, .vxe-icon--zoomin:before, .vxe-icon--zoomin:after, .vxe-icon--zoomout:before, .vxe-icon--zoomout:after, .vxe-icon--caret-top:before, .vxe-icon--caret-bottom:before, .vxe-icon--caret-left:before, .vxe-icon--caret-right:before, .vxe-icon--arrow-top:before, .vxe-icon--arrow-bottom:before, .vxe-icon--arrow-left:before, .vxe-icon--arrow-right:before, .vxe-icon--d-arrow-left:before, .vxe-icon--d-arrow-right:before, .vxe-icon--d-arrow-left:after, .vxe-icon--d-arrow-right:after, .vxe-icon--funnel:before, .vxe-icon--funnel:after, .vxe-icon--edit-outline:before, .vxe-icon--edit-outline:after, .vxe-icon--more:before, .vxe-icon--plus:before, .vxe-icon--check:before, .vxe-icon--close:before, .vxe-icon--minus:before, .vxe-icon--refresh:before, .vxe-icon--refresh:after, .vxe-icon--question:after, .vxe-icon--info:after, .vxe-icon--warning:after, .vxe-icon--success:after, .vxe-icon--circle-plus:after, .vxe-icon--remove:after, .vxe-icon--error:after, .vxe-icon--upload:before,
54
+ .vxe-icon--download:before, .vxe-icon--upload:after,
55
+ .vxe-icon--download:after, .vxe-icon--eye:before,
56
+ .vxe-icon--eye-slash:before, .vxe-icon--eye-slash:after, .vxe-icon--calendar:before, .vxe-icon--calendar:after, .vxe-icon--dot:before, .vxe-icon--print:before, .vxe-icon--print:after, .vxe-icon--search:before, .vxe-icon--search:after {
57
+ content: "";
58
+ position: absolute; }
59
+
60
+ .vxe-icon--square:before {
61
+ left: 0.05em;
62
+ top: 0.05em;
63
+ width: 0.9em;
64
+ height: 0.9em;
65
+ border-width: 0.1em;
66
+ border-style: solid;
67
+ border-color: inherit; }
68
+
69
+ .vxe-icon--zoomin {
70
+ border-width: 0.1em;
71
+ border-style: solid;
72
+ border-color: inherit;
73
+ background-color: #fff; }
74
+ .vxe-icon--zoomin:before, .vxe-icon--zoomin:after {
75
+ background-color: inherit; }
76
+ .vxe-icon--zoomin:before {
77
+ left: -0.1em;
78
+ top: 0.2em;
79
+ width: 1.1em;
80
+ height: 0.4em; }
81
+ .vxe-icon--zoomin:after {
82
+ top: -0.1em;
83
+ left: 0.2em;
84
+ width: 0.4em;
85
+ height: 1.1em; }
86
+
87
+ .vxe-icon--zoomout {
88
+ position: relative; }
89
+ .vxe-icon--zoomout:before {
90
+ right: 0;
91
+ top: 0;
92
+ width: 0.7em;
93
+ height: 0.7em;
94
+ border-width: 0.1em;
95
+ border-style: solid;
96
+ border-color: inherit; }
97
+ .vxe-icon--zoomout:after {
98
+ left: 0.1em;
99
+ bottom: 0.1em;
100
+ width: 0.7em;
101
+ height: 0.7em;
102
+ border-width: 0.1em;
103
+ border-style: solid;
104
+ border-color: inherit;
105
+ background-color: #fff; }
106
+
107
+ .vxe-icon--menu:before {
108
+ content: "";
109
+ display: inline-block;
110
+ width: 0.22em;
111
+ height: 0.22em;
112
+ box-shadow: 0 -0.36em 0, -0.36em -0.36em 0, 0.36em -0.36em 0, 0 0 0 1em inset, -0.36em 0 0, 0.36em 0 0, 0 0.36em 0, -0.36em 0.36em 0, 0.36em 0.36em 0;
113
+ margin: 0.26em; }
114
+
115
+ .vxe-icon--caret-top:before, .vxe-icon--caret-bottom:before, .vxe-icon--caret-left:before, .vxe-icon--caret-right:before {
116
+ border-width: 0.4em;
117
+ border-style: solid;
118
+ border-color: transparent; }
119
+
120
+ .vxe-icon--caret-top:before {
121
+ left: 0.1em;
122
+ bottom: 0.3em;
123
+ border-bottom-color: inherit; }
124
+
125
+ .vxe-icon--caret-bottom:before {
126
+ left: 0.1em;
127
+ top: 0.3em;
128
+ border-top-color: inherit; }
129
+
130
+ .vxe-icon--caret-left:before {
131
+ right: 0.3em;
132
+ bottom: 0.1em;
133
+ border-right-color: inherit; }
134
+
135
+ .vxe-icon--caret-right:before {
136
+ left: 0.3em;
137
+ bottom: 0.1em;
138
+ border-left-color: inherit; }
139
+
140
+ .vxe-icon--arrow-top:before, .vxe-icon--arrow-bottom:before, .vxe-icon--arrow-left:before, .vxe-icon--arrow-right:before {
141
+ top: 0.4em;
142
+ left: 0.14em;
143
+ width: 0.7em;
144
+ height: 0.7em;
145
+ border-width: 0.15em;
146
+ border-style: solid;
147
+ border-top-color: inherit;
148
+ border-right-color: inherit;
149
+ border-bottom-color: transparent;
150
+ border-left-color: transparent;
151
+ border-radius: 0.15em;
152
+ transform: rotate(-45deg); }
153
+
154
+ .vxe-icon--arrow-bottom:before {
155
+ top: 0;
156
+ left: 0.14em;
157
+ transform: rotate(135deg); }
158
+
159
+ .vxe-icon--arrow-left:before {
160
+ top: 0.18em;
161
+ left: 0.35em;
162
+ transform: rotate(-135deg); }
163
+
164
+ .vxe-icon--arrow-right:before {
165
+ top: 0.18em;
166
+ left: 0;
167
+ transform: rotate(45deg); }
168
+
169
+ .vxe-icon--d-arrow-left:before, .vxe-icon--d-arrow-right:before {
170
+ left: 0.15em; }
171
+
172
+ .vxe-icon--d-arrow-left:after, .vxe-icon--d-arrow-right:after {
173
+ left: 0.58em; }
174
+
175
+ .vxe-icon--d-arrow-left:before, .vxe-icon--d-arrow-right:before, .vxe-icon--d-arrow-left:after, .vxe-icon--d-arrow-right:after {
176
+ top: 0.18em;
177
+ width: 0.7em;
178
+ height: 0.7em;
179
+ border-width: 0.15em;
180
+ border-style: solid;
181
+ border-top-color: inherit;
182
+ border-right-color: transparent;
183
+ border-bottom-color: transparent;
184
+ border-left-color: inherit;
185
+ border-radius: 0.15em;
186
+ transform: rotate(-45deg); }
187
+
188
+ .vxe-icon--d-arrow-right:before, .vxe-icon--d-arrow-right:after {
189
+ transform: rotate(135deg); }
190
+
191
+ .vxe-icon--d-arrow-right:before {
192
+ left: -0.25em; }
193
+
194
+ .vxe-icon--d-arrow-right:after {
195
+ left: 0.18em; }
196
+
197
+ .vxe-icon--funnel:before {
198
+ top: 0.05em;
199
+ left: 0;
200
+ border-width: 0.5em;
201
+ border-style: solid;
202
+ border-top-color: inherit;
203
+ border-right-color: transparent;
204
+ border-bottom-color: transparent;
205
+ border-left-color: transparent; }
206
+
207
+ .vxe-icon--funnel:after {
208
+ left: 0.41em;
209
+ top: 0.4em;
210
+ width: 0;
211
+ height: 0.5em;
212
+ border-width: 0 0.2em 0 0;
213
+ border-style: solid;
214
+ border-right-color: inherit; }
215
+
216
+ .vxe-icon--edit-outline:before {
217
+ height: 0.84em;
218
+ width: 0.86em;
219
+ top: 0.1em;
220
+ left: 0.02em;
221
+ border-radius: 0.2em;
222
+ border-width: 0.1em;
223
+ border-style: solid;
224
+ border-color: inherit; }
225
+
226
+ .vxe-icon--edit-outline:after {
227
+ left: 0.6em;
228
+ bottom: 0.2em;
229
+ width: 0;
230
+ height: 0.8em;
231
+ border-radius: 0 0 80% 80%;
232
+ border-width: 0 0 0 0.22em;
233
+ border-style: solid;
234
+ border-color: inherit;
235
+ transform: rotate(45deg); }
236
+
237
+ .vxe-icon--more:before {
238
+ content: "...";
239
+ top: 0;
240
+ left: 0.1em;
241
+ line-height: 0.5em;
242
+ font-weight: 700; }
243
+
244
+ .vxe-icon--plus:before {
245
+ content: "+";
246
+ left: -0.12em;
247
+ bottom: -0.1em;
248
+ line-height: 1em;
249
+ font-size: 1.6em; }
250
+
251
+ .vxe-icon--check:before {
252
+ left: 0.25em;
253
+ bottom: 0.2em;
254
+ width: 0.5em;
255
+ height: 0.9em;
256
+ border-width: 0.15em;
257
+ border-style: solid;
258
+ border-top-color: transparent;
259
+ border-right-color: inherit;
260
+ border-bottom-color: inherit;
261
+ border-radius: 0.15em;
262
+ border-left-color: transparent;
263
+ transform: rotate(45deg); }
264
+
265
+ .vxe-icon--close:before {
266
+ content: "+";
267
+ left: -0.1em;
268
+ bottom: -0.16em;
269
+ line-height: 1em;
270
+ font-size: 1.8em;
271
+ transform: rotate(45deg); }
272
+
273
+ .vxe-icon--minus:before {
274
+ content: "\2500";
275
+ left: 0;
276
+ bottom: 0;
277
+ width: 100%;
278
+ text-align: center;
279
+ line-height: 0.9em;
280
+ font-size: 1.2em; }
281
+
282
+ .vxe-icon--refresh {
283
+ border-width: 0.1em;
284
+ border-style: solid;
285
+ border-radius: 50%;
286
+ border-right-color: transparent !important;
287
+ border-left-color: transparent !important; }
288
+ .vxe-icon--refresh:before {
289
+ left: 50%;
290
+ top: 0;
291
+ transform: translateX(50%) rotate(-45deg); }
292
+ .vxe-icon--refresh:after {
293
+ right: 50%;
294
+ bottom: 0;
295
+ transform: translateX(-50%) rotate(135deg); }
296
+ .vxe-icon--refresh:before, .vxe-icon--refresh:after {
297
+ width: 0;
298
+ height: 0;
299
+ border-width: 0.25em;
300
+ border-style: solid;
301
+ border-right-color: transparent;
302
+ border-bottom-color: transparent;
303
+ border-left-color: transparent; }
304
+ .vxe-icon--refresh.roll {
305
+ -webkit-animation: rollCircle 1s infinite linear;
306
+ animation: rollCircle 1s infinite linear; }
307
+
308
+ @-webkit-keyframes rollCircle {
309
+ 0% {
310
+ transform: rotate(0deg); }
311
+ 100% {
312
+ transform: rotate(360deg); } }
313
+
314
+ @keyframes rollCircle {
315
+ 0% {
316
+ transform: rotate(0deg); }
317
+ 100% {
318
+ transform: rotate(360deg); } }
319
+
320
+ .vxe-icon--question:before, .vxe-icon--info:before, .vxe-icon--warning:before, .vxe-icon--success:before, .vxe-icon--circle-plus:before, .vxe-icon--remove:before, .vxe-icon--error:before {
321
+ content: "";
322
+ border-radius: 50%;
323
+ border-width: 0.5em;
324
+ border-style: solid;
325
+ border-color: inherit;
326
+ position: absolute;
327
+ top: 0;
328
+ left: 0;
329
+ transform: scale(0.95); }
330
+
331
+ .vxe-icon--question:after, .vxe-icon--info:after, .vxe-icon--warning:after {
332
+ left: 0;
333
+ bottom: 0;
334
+ width: 100%;
335
+ text-align: center;
336
+ color: #fff;
337
+ transform: rotate(-10deg) scale(0.75); }
338
+
339
+ .vxe-icon--question:after {
340
+ content: "\3F"; }
341
+
342
+ .vxe-icon--info:after {
343
+ content: "\A1"; }
344
+
345
+ .vxe-icon--warning:after {
346
+ content: "\21"; }
347
+
348
+ .vxe-icon--success:after {
349
+ content: "\2713";
350
+ left: 0.25em;
351
+ bottom: 0;
352
+ color: #fff;
353
+ font-size: 0.65em; }
354
+
355
+ .vxe-icon--circle-plus:after {
356
+ content: "+";
357
+ left: 0;
358
+ bottom: 0;
359
+ width: 100%;
360
+ text-align: center;
361
+ color: #fff;
362
+ line-height: 1.4em;
363
+ font-size: 0.8em; }
364
+
365
+ .vxe-icon--remove:after {
366
+ content: "\2500";
367
+ left: 0;
368
+ bottom: 0;
369
+ width: 100%;
370
+ text-align: center;
371
+ line-height: 1.5em;
372
+ color: #fff;
373
+ font-size: 0.7em; }
374
+
375
+ .vxe-icon--error:after {
376
+ content: "\D7";
377
+ left: 0;
378
+ bottom: 0;
379
+ width: 100%;
380
+ line-height: 1.4em;
381
+ text-align: center;
382
+ color: #fff;
383
+ font-size: 0.8em; }
384
+
385
+ .vxe-icon--upload,
386
+ .vxe-icon--download {
387
+ overflow: hidden; }
388
+ .vxe-icon--upload:before,
389
+ .vxe-icon--download:before {
390
+ left: 0;
391
+ width: 1em;
392
+ border-width: 0;
393
+ border-style: solid;
394
+ border-color: inherit; }
395
+ .vxe-icon--upload:after,
396
+ .vxe-icon--download:after {
397
+ width: 100%;
398
+ text-align: center;
399
+ font-size: 2em; }
400
+
401
+ .vxe-icon--upload:before {
402
+ top: 0.1em;
403
+ border-top-width: 0.1em; }
404
+
405
+ .vxe-icon--upload:after {
406
+ content: "\2191";
407
+ left: 0;
408
+ top: 0.15em; }
409
+
410
+ .vxe-icon--download:before {
411
+ bottom: 0.05em;
412
+ border-bottom-width: 0.1em; }
413
+
414
+ .vxe-icon--download:after {
415
+ content: "\2191";
416
+ left: 0;
417
+ bottom: 0.15em;
418
+ transform: rotate(180deg); }
419
+
420
+ .vxe-icon--eye:before,
421
+ .vxe-icon--eye-slash:before {
422
+ content: "\25CF";
423
+ top: 0.16em;
424
+ left: 0;
425
+ width: 1em;
426
+ height: 0.68em;
427
+ line-height: 0.25em;
428
+ border-radius: 50%;
429
+ border-width: 0.1em;
430
+ border-style: solid;
431
+ border-color: inherit;
432
+ text-align: center; }
433
+
434
+ .vxe-icon--eye-slash:after {
435
+ top: -0.1em;
436
+ left: 0.45em;
437
+ width: 0;
438
+ height: 1.2em;
439
+ border-width: 0;
440
+ border-style: solid;
441
+ border-color: inherit;
442
+ border-left-width: 0.1em;
443
+ transform: rotate(45deg); }
444
+
445
+ .vxe-icon--calendar:before {
446
+ top: 0.15em;
447
+ left: 0;
448
+ width: 1em;
449
+ height: 0.8em;
450
+ border-width: 0.2em 0.1em 0.1em 0.1em;
451
+ border-radius: 0.1em 0.1em 0 0;
452
+ border-style: solid;
453
+ border-color: inherit; }
454
+
455
+ .vxe-icon--calendar:after {
456
+ left: 0.2em;
457
+ top: 0;
458
+ width: 0.6em;
459
+ height: 0.3em;
460
+ border-width: 0 0.1em;
461
+ border-style: solid;
462
+ border-color: inherit; }
463
+
464
+ .vxe-icon--dot:before {
465
+ top: 0.25em;
466
+ left: 0.25em;
467
+ border-radius: 50%;
468
+ border-width: 0.25em;
469
+ border-style: solid;
470
+ border-color: inherit; }
471
+
472
+ .vxe-icon--print {
473
+ box-shadow: inset 0 0 0 0.1em;
474
+ border-width: 0.2em 0;
475
+ border-style: solid;
476
+ border-color: transparent !important;
477
+ border-radius: 0.3em 0.3em 0 0; }
478
+ .vxe-icon--print:before {
479
+ width: 0.6em;
480
+ height: 0.3em;
481
+ top: -0.2em;
482
+ left: 0.2em;
483
+ box-shadow: inset 0 0 0 0.1em; }
484
+ .vxe-icon--print:after {
485
+ width: 0.6em;
486
+ height: 0.6em;
487
+ left: 0.2em;
488
+ bottom: -0.2em;
489
+ box-shadow: inset 0 0 0 0.1em;
490
+ background-color: #fff; }
491
+
492
+ .vxe-icon--search:before {
493
+ top: 0;
494
+ left: 0;
495
+ width: 0.8em;
496
+ height: 0.8em;
497
+ border-width: 0.15em;
498
+ border-style: solid;
499
+ border-color: inherit;
500
+ border-radius: 50%; }
501
+
502
+ .vxe-icon--search:after {
503
+ top: 0.75em;
504
+ left: 0.6em;
505
+ width: 0.35em;
506
+ height: 0;
507
+ border-width: 0.15em 0 0 0;
508
+ border-style: solid;
509
+ border-color: inherit;
510
+ transform: rotate(45deg); }
511
+
512
+ /*加载中*/
513
+ .vxe-loading {
514
+ display: none;
515
+ position: absolute;
516
+ width: 100%;
517
+ height: 100%;
518
+ top: 0;
519
+ left: 0;
520
+ z-index: 99;
521
+ -webkit-user-select: none;
522
+ -moz-user-select: none;
523
+ -ms-user-select: none;
524
+ user-select: none;
525
+ background-color: rgba(0, 0, 0, 0.2); }
526
+ .vxe-loading.is--visible {
527
+ display: block; }
528
+ .vxe-loading > .vxe-loading--chunk {
529
+ width: 100%;
530
+ position: absolute;
531
+ top: 50%;
532
+ left: 0;
533
+ transform: translateY(-50%);
534
+ text-align: center;
535
+ color: #409eff; }
536
+ .vxe-loading .vxe-loading--default-icon {
537
+ font-size: 1.2em; }
538
+ .vxe-loading .vxe-loading--text {
539
+ padding: 0.4em 0; }
540
+ .vxe-loading .vxe-loading--spinner {
541
+ display: inline-block;
542
+ position: relative;
543
+ width: 56px;
544
+ height: 56px; }
545
+ .vxe-loading .vxe-loading--spinner:before, .vxe-loading .vxe-loading--spinner:after {
546
+ content: "";
547
+ width: 100%;
548
+ height: 100%;
549
+ border-radius: 50%;
550
+ background-color: #409eff;
551
+ opacity: 0.6;
552
+ position: absolute;
553
+ top: 0;
554
+ left: 0;
555
+ -webkit-animation: bounce 2.0s infinite ease-in-out;
556
+ animation: bounce 2.0s infinite ease-in-out; }
557
+ .vxe-loading .vxe-loading--spinner:after {
558
+ -webkit-animation-delay: -1.0s;
559
+ animation-delay: -1.0s; }
560
+
561
+ @-webkit-keyframes bounce {
562
+ 0%, 100% {
563
+ transform: scale(0); }
564
+ 50% {
565
+ transform: scale(1); } }
566
+
567
+ @keyframes bounce {
568
+ 0%, 100% {
569
+ transform: scale(0); }
570
+ 50% {
571
+ transform: scale(1); } }
572
+
573
+ .size--mini .vxe-loading .vxe-loading--spinner {
574
+ width: 38px;
575
+ height: 38px; }
576
+
577
+ .size--small .vxe-loading .vxe-loading--spinner {
578
+ width: 44px;
579
+ height: 44px; }
580
+
581
+ .size--medium .vxe-loading .vxe-loading--spinner {
582
+ width: 50px;
583
+ height: 50px; }