vxe-table 4.7.35 → 4.7.37
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/README.en.md +35 -12
- package/README.md +34 -11
- package/README.zh-TW.md +35 -12
- package/es/components.js +6 -2
- package/es/iconfont.1719470436190.ttf +0 -0
- package/es/iconfont.1719470436190.woff +0 -0
- package/es/iconfont.1719470436190.woff2 +0 -0
- package/es/locale/lang/en-US.js +5 -2
- package/es/locale/lang/es-ES.js +5 -2
- package/es/locale/lang/ja-JP.js +5 -2
- package/es/locale/lang/pt-BR.js +5 -2
- package/es/locale/lang/zh-CN.js +5 -2
- package/es/locale/lang/zh-TC.js +5 -2
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/module/export/export-panel.js +1 -6
- package/es/table/module/export/hook.js +36 -18
- package/es/table/module/export/import-panel.js +7 -14
- package/es/table/style.css +706 -1
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +70 -3
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +706 -1
- package/es/vxe-table/style.min.css +1 -1
- package/lib/components.js +8 -7
- package/lib/components.min.js +1 -1
- package/lib/iconfont.1719470436190.ttf +0 -0
- package/lib/iconfont.1719470436190.woff +0 -0
- package/lib/iconfont.1719470436190.woff2 +0 -0
- package/lib/index.umd.js +739 -44
- package/lib/index.umd.min.js +1 -1
- package/lib/locale/lang/en-US.js +5 -2
- package/lib/locale/lang/en-US.min.js +1 -1
- package/lib/locale/lang/en-US.umd.js +5 -2
- package/lib/locale/lang/es-ES.js +5 -2
- package/lib/locale/lang/es-ES.min.js +1 -1
- package/lib/locale/lang/es-ES.umd.js +5 -2
- package/lib/locale/lang/ja-JP.js +5 -2
- package/lib/locale/lang/ja-JP.min.js +1 -1
- package/lib/locale/lang/ja-JP.umd.js +5 -2
- package/lib/locale/lang/pt-BR.js +5 -2
- package/lib/locale/lang/pt-BR.min.js +1 -1
- package/lib/locale/lang/pt-BR.umd.js +5 -2
- package/lib/locale/lang/zh-CN.js +5 -2
- package/lib/locale/lang/zh-CN.min.js +1 -1
- package/lib/locale/lang/zh-CN.umd.js +5 -2
- package/lib/locale/lang/zh-HK.min.js +1 -1
- package/lib/locale/lang/zh-HK.umd.js +5 -2
- package/lib/locale/lang/zh-MO.min.js +1 -1
- package/lib/locale/lang/zh-MO.umd.js +5 -2
- package/lib/locale/lang/zh-TC.js +5 -2
- package/lib/locale/lang/zh-TC.min.js +1 -1
- package/lib/locale/lang/zh-TC.umd.js +5 -2
- package/lib/locale/lang/zh-TW.min.js +1 -1
- package/lib/locale/lang/zh-TW.umd.js +5 -2
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/module/export/export-panel.js +1 -6
- package/lib/table/module/export/export-panel.min.js +1 -1
- package/lib/table/module/export/hook.js +35 -18
- package/lib/table/module/export/hook.min.js +1 -1
- package/lib/table/module/export/import-panel.js +5 -12
- package/lib/table/module/export/import-panel.min.js +1 -1
- package/lib/table/style/style.css +706 -1
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +71 -4
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-table/style/style.css +706 -1
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/components.ts +7 -2
- package/packages/locale/lang/en-US.ts +5 -2
- package/packages/locale/lang/es-ES.ts +5 -2
- package/packages/locale/lang/ja-JP.ts +5 -2
- package/packages/locale/lang/pt-BR.ts +5 -2
- package/packages/locale/lang/zh-CN.ts +5 -2
- package/packages/locale/lang/zh-TC.ts +5 -2
- package/packages/table/module/export/export-panel.ts +1 -6
- package/packages/table/module/export/hook.ts +35 -19
- package/packages/table/module/export/import-panel.ts +8 -15
- package/packages/ui/index.ts +68 -1
- package/styles/components/icon.scss +183 -0
- package/styles/components/old-icon.scss +717 -0
- package/styles/components/table-module/export.scss +2 -1
- package/styles/components/table.scss +1 -0
- package/styles/icon/iconfont.ttf +0 -0
- package/styles/icon/iconfont.woff +0 -0
- package/styles/icon/iconfont.woff2 +0 -0
|
@@ -832,7 +832,7 @@ hooks.add('tableExportModule', {
|
|
|
832
832
|
$xeTable.createData(rows)
|
|
833
833
|
.then((data: any) => {
|
|
834
834
|
let loadRest
|
|
835
|
-
if (opts.mode === 'insert') {
|
|
835
|
+
if (opts.mode === 'insert' || opts.mode === 'insertBottom') {
|
|
836
836
|
loadRest = $xeTable.insert(data)
|
|
837
837
|
} else {
|
|
838
838
|
loadRest = $xeTable.reloadData(data)
|
|
@@ -888,7 +888,7 @@ hooks.add('tableExportModule', {
|
|
|
888
888
|
internalData._importResolve = _importResolve
|
|
889
889
|
internalData._importReject = _importReject
|
|
890
890
|
if (window.FileReader) {
|
|
891
|
-
const options = Object.assign({ mode: '
|
|
891
|
+
const options = Object.assign({ mode: 'insertBottom' }, opts, { type, filename })
|
|
892
892
|
if (options.remote) {
|
|
893
893
|
if (importMethod) {
|
|
894
894
|
Promise.resolve(importMethod({ file, options, $table: $xeTable })).then(() => {
|
|
@@ -949,6 +949,7 @@ hooks.add('tableExportModule', {
|
|
|
949
949
|
message: true,
|
|
950
950
|
isHeader: showHeader,
|
|
951
951
|
isFooter: showFooter,
|
|
952
|
+
current: 'current',
|
|
952
953
|
modes: ['current', 'selected'].concat(proxyOpts.ajax && proxyOpts.ajax.queryAll ? ['all'] : [])
|
|
953
954
|
}, options)
|
|
954
955
|
const types: string[] = defOpts.types || XEUtils.keys(exportOpts._typeMaps)
|
|
@@ -960,13 +961,19 @@ hooks.add('tableExportModule', {
|
|
|
960
961
|
const typeList = types.map((value) => {
|
|
961
962
|
return {
|
|
962
963
|
value,
|
|
963
|
-
label: `vxe.export.types.${value}`
|
|
964
|
+
label: getI18n(`vxe.export.types.${value}`)
|
|
964
965
|
}
|
|
965
966
|
})
|
|
966
|
-
const modeList = modes.map((
|
|
967
|
+
const modeList = modes.map((item: any) => {
|
|
968
|
+
if (item && item.value) {
|
|
969
|
+
return {
|
|
970
|
+
value: item.value,
|
|
971
|
+
label: item.label || item.value
|
|
972
|
+
}
|
|
973
|
+
}
|
|
967
974
|
return {
|
|
968
|
-
value,
|
|
969
|
-
label: `vxe.export.modes.${
|
|
975
|
+
value: item,
|
|
976
|
+
label: getI18n(`vxe.export.modes.${item}`)
|
|
970
977
|
}
|
|
971
978
|
})
|
|
972
979
|
// 默认选中
|
|
@@ -1016,11 +1023,11 @@ hooks.add('tableExportModule', {
|
|
|
1016
1023
|
Object.assign(exportParams, {
|
|
1017
1024
|
mode: selectRecords.length ? 'selected' : 'current'
|
|
1018
1025
|
}, defOpts)
|
|
1019
|
-
if (
|
|
1020
|
-
exportParams.mode =
|
|
1026
|
+
if (!modeList.some(item => item.value === exportParams.mode)) {
|
|
1027
|
+
exportParams.mode = modeList[0].value
|
|
1021
1028
|
}
|
|
1022
|
-
if (
|
|
1023
|
-
exportParams.type =
|
|
1029
|
+
if (!typeList.some(item => item.value === exportParams.type)) {
|
|
1030
|
+
exportParams.type = typeList[0].value
|
|
1024
1031
|
}
|
|
1025
1032
|
initStore.export = true
|
|
1026
1033
|
return nextTick()
|
|
@@ -1143,9 +1150,8 @@ hooks.add('tableExportModule', {
|
|
|
1143
1150
|
beforeExportMethod({ options: opts, $table: $xeTable, $grid: $xeGrid })
|
|
1144
1151
|
}
|
|
1145
1152
|
}
|
|
1146
|
-
|
|
1147
1153
|
if (!opts.data) {
|
|
1148
|
-
opts.data =
|
|
1154
|
+
opts.data = []
|
|
1149
1155
|
if (mode === 'selected') {
|
|
1150
1156
|
const selectRecords = $xeTable.getCheckboxRecords()
|
|
1151
1157
|
if (['html', 'pdf'].indexOf(type) > -1 && treeConfig) {
|
|
@@ -1194,6 +1200,8 @@ hooks.add('tableExportModule', {
|
|
|
1194
1200
|
})
|
|
1195
1201
|
}
|
|
1196
1202
|
}
|
|
1203
|
+
} else if (mode === 'current') {
|
|
1204
|
+
opts.data = afterFullData
|
|
1197
1205
|
}
|
|
1198
1206
|
}
|
|
1199
1207
|
return handleExport(opts)
|
|
@@ -1318,10 +1326,10 @@ hooks.add('tableExportModule', {
|
|
|
1318
1326
|
const { initStore, importStore, importParams } = reactData
|
|
1319
1327
|
const importOpts = computeImportOpts.value
|
|
1320
1328
|
const defOpts = Object.assign({
|
|
1321
|
-
mode: '
|
|
1329
|
+
mode: 'insertBottom',
|
|
1322
1330
|
message: true,
|
|
1323
1331
|
types: XEUtils.keys(importOpts._typeMaps),
|
|
1324
|
-
modes: ['
|
|
1332
|
+
modes: ['insertBottom', 'covering']
|
|
1325
1333
|
}, importOpts, options)
|
|
1326
1334
|
const types = defOpts.types || []
|
|
1327
1335
|
const modes = defOpts.modes || []
|
|
@@ -1341,13 +1349,19 @@ hooks.add('tableExportModule', {
|
|
|
1341
1349
|
const typeList = types.map((value) => {
|
|
1342
1350
|
return {
|
|
1343
1351
|
value,
|
|
1344
|
-
label: `vxe.export.types.${value}`
|
|
1352
|
+
label: getI18n(`vxe.export.types.${value}`)
|
|
1345
1353
|
}
|
|
1346
1354
|
})
|
|
1347
|
-
const modeList = modes.map((
|
|
1355
|
+
const modeList = modes.map((item: any) => {
|
|
1356
|
+
if (item && item.value) {
|
|
1357
|
+
return {
|
|
1358
|
+
value: item.value,
|
|
1359
|
+
label: item.label || item.value
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1348
1362
|
return {
|
|
1349
|
-
value,
|
|
1350
|
-
label: `vxe.import.modes.${
|
|
1363
|
+
value: item,
|
|
1364
|
+
label: getI18n(`vxe.import.modes.${item}`)
|
|
1351
1365
|
}
|
|
1352
1366
|
})
|
|
1353
1367
|
Object.assign(importStore, {
|
|
@@ -1359,12 +1373,14 @@ hooks.add('tableExportModule', {
|
|
|
1359
1373
|
visible: true
|
|
1360
1374
|
})
|
|
1361
1375
|
Object.assign(importParams, defOpts)
|
|
1376
|
+
if (!modeList.some(item => item.value === importParams.mode)) {
|
|
1377
|
+
importParams.mode = modeList[0].value
|
|
1378
|
+
}
|
|
1362
1379
|
initStore.import = true
|
|
1363
1380
|
},
|
|
1364
1381
|
openExport (options: any) {
|
|
1365
1382
|
const exportOpts = computeExportOpts.value
|
|
1366
1383
|
const defOpts = Object.assign({
|
|
1367
|
-
mode: 'insert',
|
|
1368
1384
|
message: true,
|
|
1369
1385
|
types: XEUtils.keys(exportOpts._typeMaps)
|
|
1370
1386
|
}, exportOpts, options)
|
|
@@ -3,7 +3,7 @@ import { VxeUI } from '../../../ui'
|
|
|
3
3
|
import XEUtils from 'xe-utils'
|
|
4
4
|
import { parseFile } from '../../../ui/src/utils'
|
|
5
5
|
|
|
6
|
-
import type { VxeButtonComponent, VxeModalComponent,
|
|
6
|
+
import type { VxeButtonComponent, VxeModalComponent, VxeSelectComponent } from 'vxe-pc-ui'
|
|
7
7
|
import type { VxeTablePrivateMethods, VxeTableConstructor, VxeTableMethods } from '../../../../types'
|
|
8
8
|
|
|
9
9
|
const { getI18n, getIcon } = VxeUI
|
|
@@ -17,8 +17,7 @@ export default defineComponent({
|
|
|
17
17
|
setup (props) {
|
|
18
18
|
const VxeUIModalComponent = VxeUI.getComponent<VxeModalComponent>('VxeModal')
|
|
19
19
|
const VxeUIButtonComponent = VxeUI.getComponent<VxeButtonComponent>('VxeButton')
|
|
20
|
-
const
|
|
21
|
-
const VxeUIRadioComponent = VxeUI.getComponent<VxeRadioComponent>('VxeRadio')
|
|
20
|
+
const VxeUISelectComponent = VxeUI.getComponent<VxeSelectComponent>('VxeSelect')
|
|
22
21
|
|
|
23
22
|
const $xeTable = inject('$xeTable', {} as VxeTableConstructor & VxeTableMethods & VxeTablePrivateMethods)
|
|
24
23
|
const { computeImportOpts } = $xeTable.getComputeMaps()
|
|
@@ -44,7 +43,7 @@ export default defineComponent({
|
|
|
44
43
|
const { type, typeList } = storeData
|
|
45
44
|
if (type) {
|
|
46
45
|
const selectItem = XEUtils.find(typeList, item => type === item.value)
|
|
47
|
-
return selectItem ?
|
|
46
|
+
return selectItem ? selectItem.label : '*.*'
|
|
48
47
|
}
|
|
49
48
|
return `*.${typeList.map((item: any) => item.value).join(', *.')}`
|
|
50
49
|
})
|
|
@@ -102,7 +101,7 @@ export default defineComponent({
|
|
|
102
101
|
modelValue: storeData.visible,
|
|
103
102
|
title: getI18n('vxe.import.impTitle'),
|
|
104
103
|
className: 'vxe-table-import-popup-wrapper',
|
|
105
|
-
width:
|
|
104
|
+
width: 520,
|
|
106
105
|
mask: true,
|
|
107
106
|
lockView: true,
|
|
108
107
|
showFooter: false,
|
|
@@ -150,21 +149,15 @@ export default defineComponent({
|
|
|
150
149
|
h('td', parseTypeLabel)
|
|
151
150
|
]),
|
|
152
151
|
h('tr', [
|
|
153
|
-
h('td', getI18n('vxe.import.
|
|
152
|
+
h('td', getI18n('vxe.import.impMode')),
|
|
154
153
|
h('td', [
|
|
155
|
-
|
|
156
|
-
? h(
|
|
154
|
+
VxeUISelectComponent
|
|
155
|
+
? h(VxeUISelectComponent, {
|
|
157
156
|
modelValue: defaultOptions.mode,
|
|
157
|
+
options: storeData.modeList,
|
|
158
158
|
'onUpdate:modelValue' (value: any) {
|
|
159
159
|
defaultOptions.mode = value
|
|
160
160
|
}
|
|
161
|
-
}, {
|
|
162
|
-
default: () => storeData.modeList.map((item: any) => {
|
|
163
|
-
return h(VxeUIRadioComponent, {
|
|
164
|
-
label: item.value,
|
|
165
|
-
content: getI18n(item.label)
|
|
166
|
-
})
|
|
167
|
-
})
|
|
168
161
|
})
|
|
169
162
|
: createCommentVNode()
|
|
170
163
|
])
|
package/packages/ui/index.ts
CHANGED
|
@@ -202,7 +202,7 @@ VxeUI.setConfig({
|
|
|
202
202
|
}
|
|
203
203
|
})
|
|
204
204
|
|
|
205
|
-
const iconPrefix = 'vxe-icon-'
|
|
205
|
+
const iconPrefix = 'vxe-table-icon-'
|
|
206
206
|
|
|
207
207
|
VxeUI.setIcon({
|
|
208
208
|
// table
|
|
@@ -303,15 +303,82 @@ export const VXETable = VxeUI
|
|
|
303
303
|
VXETable.setup = config
|
|
304
304
|
VXETable.config = config
|
|
305
305
|
|
|
306
|
+
/**
|
|
307
|
+
* 已废弃,兼容老版本
|
|
308
|
+
* @deprecated
|
|
309
|
+
*/
|
|
306
310
|
export const saveFile: VxeUploadDefines.SaveFileFunction = (options) => {
|
|
307
311
|
return VxeUI.saveFile(options)
|
|
308
312
|
}
|
|
313
|
+
/**
|
|
314
|
+
* 已废弃,兼容老版本
|
|
315
|
+
* @deprecated
|
|
316
|
+
*/
|
|
309
317
|
export const readFile: VxeUploadDefines.ReadFileFunction = (options) => {
|
|
310
318
|
return VxeUI.readFile(options)
|
|
311
319
|
}
|
|
320
|
+
/**
|
|
321
|
+
* 已废弃,兼容老版本
|
|
322
|
+
* @deprecated
|
|
323
|
+
*/
|
|
312
324
|
export const print: VxePrintDefines.PrintFunction = (options) => {
|
|
313
325
|
return VxeUI.print(options)
|
|
314
326
|
}
|
|
327
|
+
/**
|
|
328
|
+
* 已废弃,兼容老版本
|
|
329
|
+
* @deprecated
|
|
330
|
+
*/
|
|
331
|
+
export const modal = {
|
|
332
|
+
/**
|
|
333
|
+
* 已废弃,兼容老版本
|
|
334
|
+
* @deprecated
|
|
335
|
+
*/
|
|
336
|
+
get (id: any) {
|
|
337
|
+
return VxeUI.modal.get(id)
|
|
338
|
+
},
|
|
339
|
+
/**
|
|
340
|
+
* 已废弃,兼容老版本
|
|
341
|
+
* @deprecated
|
|
342
|
+
*/
|
|
343
|
+
close (id: any) {
|
|
344
|
+
return VxeUI.modal.close(id)
|
|
345
|
+
},
|
|
346
|
+
/**
|
|
347
|
+
* 已废弃,兼容老版本
|
|
348
|
+
* @deprecated
|
|
349
|
+
*/
|
|
350
|
+
open (options: any) {
|
|
351
|
+
return VxeUI.modal.open(options)
|
|
352
|
+
},
|
|
353
|
+
/**
|
|
354
|
+
* 已废弃,兼容老版本
|
|
355
|
+
* @deprecated
|
|
356
|
+
*/
|
|
357
|
+
alert (content: any, title: any, options: any) {
|
|
358
|
+
return VxeUI.modal.alert(content, title, options)
|
|
359
|
+
},
|
|
360
|
+
/**
|
|
361
|
+
* 已废弃,兼容老版本
|
|
362
|
+
* @deprecated
|
|
363
|
+
*/
|
|
364
|
+
confirm (content: any, title: any, options: any) {
|
|
365
|
+
return VxeUI.modal.confirm(content, title, options)
|
|
366
|
+
},
|
|
367
|
+
/**
|
|
368
|
+
* 已废弃,兼容老版本
|
|
369
|
+
* @deprecated
|
|
370
|
+
*/
|
|
371
|
+
message (content: any, options: any) {
|
|
372
|
+
return VxeUI.modal.message(content, options)
|
|
373
|
+
},
|
|
374
|
+
/**
|
|
375
|
+
* 已废弃,兼容老版本
|
|
376
|
+
* @deprecated
|
|
377
|
+
*/
|
|
378
|
+
notification (content: any, title: any, options: any) {
|
|
379
|
+
return VxeUI.modal.notification(content, title, options)
|
|
380
|
+
}
|
|
381
|
+
}
|
|
315
382
|
|
|
316
383
|
export {
|
|
317
384
|
VxeUI
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
@import './old-icon.scss';
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: "vxetableiconfont";
|
|
5
|
+
src:
|
|
6
|
+
url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2');
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@keyframes rollCircle {
|
|
10
|
+
0% {
|
|
11
|
+
transform: rotate(0deg);
|
|
12
|
+
}
|
|
13
|
+
100% {
|
|
14
|
+
transform: rotate(360deg);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
$btnThemeList: (
|
|
19
|
+
(
|
|
20
|
+
name: "primary",
|
|
21
|
+
textColor: var(--vxe-ui-font-primary-color),
|
|
22
|
+
),
|
|
23
|
+
(
|
|
24
|
+
name: "success",
|
|
25
|
+
textColor: var(--vxe-ui-status-success-color),
|
|
26
|
+
),
|
|
27
|
+
(
|
|
28
|
+
name: "info",
|
|
29
|
+
textColor: var(--vxe-ui-status-info-color),
|
|
30
|
+
),
|
|
31
|
+
(
|
|
32
|
+
name: "warning",
|
|
33
|
+
textColor: var(--vxe-ui-status-warning-color),
|
|
34
|
+
),
|
|
35
|
+
(
|
|
36
|
+
name: "danger",
|
|
37
|
+
textColor: var(--vxe-ui-status-danger-color),
|
|
38
|
+
),
|
|
39
|
+
(
|
|
40
|
+
name: "error",
|
|
41
|
+
textColor: var(--vxe-ui-status-error-color),
|
|
42
|
+
)
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
[class*="vxe-table-icon-"] {
|
|
46
|
+
font-family: "vxetableiconfont" !important;
|
|
47
|
+
font-style: normal;
|
|
48
|
+
font-weight: 400;
|
|
49
|
+
font-size: 1.1em;
|
|
50
|
+
line-height: 1;
|
|
51
|
+
-webkit-font-smoothing: antialiased;
|
|
52
|
+
-moz-osx-font-smoothing: grayscale;
|
|
53
|
+
&.animat,
|
|
54
|
+
&.roll {
|
|
55
|
+
display: inline-block;
|
|
56
|
+
}
|
|
57
|
+
&.animat {
|
|
58
|
+
transition: transform 0.25s ease-in-out;
|
|
59
|
+
}
|
|
60
|
+
&.rotate45 {
|
|
61
|
+
transform: rotate(45deg);
|
|
62
|
+
}
|
|
63
|
+
&.rotate90 {
|
|
64
|
+
transform: rotate(90deg);
|
|
65
|
+
}
|
|
66
|
+
&.rotate180 {
|
|
67
|
+
transform: rotate(180deg);
|
|
68
|
+
}
|
|
69
|
+
&.roll {
|
|
70
|
+
animation: rollCircle 1s infinite linear;
|
|
71
|
+
}
|
|
72
|
+
@for $index from 0 to length($btnThemeList) {
|
|
73
|
+
$item: nth($btnThemeList, $index + 1);
|
|
74
|
+
&.theme--#{map-get($item, name)} {
|
|
75
|
+
color: map-get($item, textColor);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.vxe-table-icon-question-circle-fill:before {
|
|
81
|
+
content: "\e690";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.vxe-table-icon-radio-checked:before {
|
|
85
|
+
content: "\e75b";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.vxe-table-icon-radio-checked-fill:before {
|
|
89
|
+
content: "\e763";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.vxe-table-icon-print:before {
|
|
93
|
+
content: "\eba0";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.vxe-table-icon-checkbox-checked-fill:before {
|
|
97
|
+
content: "\e67d";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.vxe-table-icon-custom-column:before {
|
|
101
|
+
content: "\e62d";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.vxe-table-icon-radio-unchecked:before {
|
|
105
|
+
content: "\e7c9";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.vxe-table-icon-caret-down:before {
|
|
109
|
+
content: "\e8ed";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.vxe-table-icon-caret-up:before {
|
|
113
|
+
content: "\e8ee";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.vxe-table-icon-caret-right:before {
|
|
117
|
+
content: "\e8ef";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.vxe-table-icon-caret-left:before {
|
|
121
|
+
content: "\e8f0";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.vxe-table-icon-fullscreen:before {
|
|
125
|
+
content: "\e70e";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.vxe-table-icon-minimize:before {
|
|
129
|
+
content: "\e749";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.vxe-table-icon-checkbox-unchecked:before {
|
|
133
|
+
content: "\e727";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.vxe-table-icon-funnel:before {
|
|
137
|
+
content: "\e8ec";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.vxe-table-icon-download:before {
|
|
141
|
+
content: "\e61a";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.vxe-table-icon-spinner:before {
|
|
145
|
+
content: "\e601";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.vxe-table-icon-arrow-right:before {
|
|
149
|
+
content: "\e743";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.vxe-table-icon-repeat:before {
|
|
153
|
+
content: "\ea4a";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.vxe-table-icon-drag-handle:before {
|
|
157
|
+
content: "\e64e";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.vxe-table-icon-checkbox-indeterminate-fill:before {
|
|
161
|
+
content: "\e8c4";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.vxe-table-icon-upload:before {
|
|
165
|
+
content: "\e683";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.vxe-table-icon-fixed-left-fill:before {
|
|
169
|
+
content: "\e9b9";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.vxe-table-icon-fixed-left:before {
|
|
173
|
+
content: "\e9ba";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.vxe-table-icon-fixed-right-fill:before {
|
|
177
|
+
content: "\f290";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.vxe-table-icon-fixed-right:before {
|
|
181
|
+
content: "\f291";
|
|
182
|
+
}
|
|
183
|
+
|