cloud-web-corejs 1.0.229 → 1.0.231
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/package.json +1 -1
- package/src/components/table/config.js +1 -74
- package/src/components/table/index.js +3 -1114
- package/src/components/table/tableFormMixin.js +1 -285
- package/src/components/table/vxeFilter/index.js +1 -153
- package/src/components/table/vxeFilter/mixin.js +1 -301
- package/src/layout/components/Sidebar/default.vue +18 -1
- package/src/views/user/home/default.vue +273 -182
|
@@ -4,1120 +4,9 @@ import Sortable from "sortablejs";
|
|
|
4
4
|
import tableConfig from "./config.js";
|
|
5
5
|
import customConfig from "./customConfig.js";
|
|
6
6
|
import Vue from "vue";
|
|
7
|
-
import {extendDeeply} from "../../utils/index.js";
|
|
7
|
+
import { extendDeeply } from "../../utils/index.js";
|
|
8
8
|
import corejsConfig from "@/corejsConfig";
|
|
9
9
|
import settingConfig from "@/settings.js";
|
|
10
|
-
import {getCellValue, createParams} from "./util/index";
|
|
11
|
-
|
|
12
|
-
let configUtil = {
|
|
13
|
-
Sortable,
|
|
14
|
-
extendDeeply,
|
|
15
|
-
tableConfig,
|
|
16
|
-
Vue,
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
function getGrid(that, tableRef) {
|
|
20
|
-
let $grid;
|
|
21
|
-
if (Array.isArray(that.$refs[tableRef])) {
|
|
22
|
-
$grid = that.$refs[tableRef][0];
|
|
23
|
-
} else {
|
|
24
|
-
$grid = that.$refs[tableRef];
|
|
25
|
-
}
|
|
26
|
-
return $grid;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
async function initVxeTable(option) {
|
|
30
|
-
let tableName = option.tableName;
|
|
31
|
-
if (
|
|
32
|
-
!configUtil.tableConfig.disableTableName
|
|
33
|
-
&& option.tableNameRequired !== false
|
|
34
|
-
&& !tableName
|
|
35
|
-
&& settingConfig.tableStorageDisabled !== true
|
|
36
|
-
) {
|
|
37
|
-
return false;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
let that = option.vue;
|
|
41
|
-
if (!that.$refs[option.tableRef]) {
|
|
42
|
-
await that.$nextTick();
|
|
43
|
-
}
|
|
44
|
-
let $grid = getGrid(that, option.tableRef);
|
|
45
|
-
if (!$grid) {
|
|
46
|
-
return false;
|
|
47
|
-
}
|
|
48
|
-
delete option.vue;
|
|
49
|
-
|
|
50
|
-
//操作列自动补全
|
|
51
|
-
handleCustomAlign(option);
|
|
52
|
-
|
|
53
|
-
initColumnIndex(option.columns);
|
|
54
|
-
|
|
55
|
-
let originOption = that.$baseLodash.cloneDeep(option);
|
|
56
|
-
originOption.vue = that;
|
|
57
|
-
$grid.originOption = originOption;
|
|
58
|
-
option.vue = that;
|
|
59
|
-
|
|
60
|
-
let isQueryAllPage = true;
|
|
61
|
-
if (option.isQueryAllPage !== null && option.isQueryAllPage !== undefined) {
|
|
62
|
-
isQueryAllPage = option.isQueryAllPage;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
let searchColumns = null
|
|
66
|
-
if (tableName) {
|
|
67
|
-
$grid.tableName = tableName;
|
|
68
|
-
if (option.path) {
|
|
69
|
-
await getTableData(that, option.tableRef, "isQueryAllPage", (res1) => {
|
|
70
|
-
let result = res1.objx ? res1.objx.data : null;
|
|
71
|
-
if (result !== null && result !== undefined) {
|
|
72
|
-
if (result === "false" || result === false) {
|
|
73
|
-
isQueryAllPage = false;
|
|
74
|
-
} else {
|
|
75
|
-
isQueryAllPage = true;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
await getTableJson(tableName, that, (resultMsg) => {
|
|
81
|
-
let objx = resultMsg.objx;
|
|
82
|
-
if (objx !== null && objx !== undefined) {
|
|
83
|
-
let jsonStr = objx.data;
|
|
84
|
-
if (jsonStr) {
|
|
85
|
-
let json = JSON.parse(decodeURIComponent(jsonStr));
|
|
86
|
-
let columnData = json.columns ? json.columns : json;
|
|
87
|
-
if (columnData) {
|
|
88
|
-
option.columns = initColumn(option, columnData);
|
|
89
|
-
}
|
|
90
|
-
searchColumns = initSearchColumns(option.searchColumns, json.searchColumns);
|
|
91
|
-
$grid.searchColumns = searchColumns;
|
|
92
|
-
initExportColumns($grid, json);
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
if (!searchColumns || !searchColumns.length) {
|
|
96
|
-
searchColumns = initSearchColumns(option.searchColumns);
|
|
97
|
-
$grid.searchColumns = searchColumns;
|
|
98
|
-
}
|
|
99
|
-
});
|
|
100
|
-
} else {
|
|
101
|
-
searchColumns = initSearchColumns(option.searchColumns);
|
|
102
|
-
$grid.searchColumns = searchColumns;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
if(!!$grid?.$refs?.xTable){
|
|
106
|
-
$grid.$refs.xTable.getCellValue = getCellValue;
|
|
107
|
-
$grid.$refs.xTable.createParams = createParams;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// $grid.getCellValue = getCellValue;
|
|
111
|
-
// $grid.createParams = createParams;
|
|
112
|
-
|
|
113
|
-
option.isQueryAllPage = isQueryAllPage;
|
|
114
|
-
let nOption = initOption(option);
|
|
115
|
-
|
|
116
|
-
// $grid.isQueryAllPage = isQueryAllPage;
|
|
117
|
-
|
|
118
|
-
if (tableName) {
|
|
119
|
-
nOption.tableName = tableName;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
nOption.vue = that;
|
|
123
|
-
//绑定列位置拖拽
|
|
124
|
-
columnDrop(that, tableName, option.tableRef);
|
|
125
|
-
|
|
126
|
-
//自动绑定toobar
|
|
127
|
-
handleToolbar($grid, option);
|
|
128
|
-
|
|
129
|
-
// nOption.originOption = originOption;
|
|
130
|
-
// nOption.getCellValue = getCellValue;
|
|
131
|
-
// nOption.createParams = createParams;
|
|
132
|
-
// nOption.isQueryAllPage = isQueryAllPage;
|
|
133
|
-
// nOption.searchColumns = searchColumns;
|
|
134
|
-
let params = {
|
|
135
|
-
originOption,
|
|
136
|
-
getCellValue,
|
|
137
|
-
createParams,
|
|
138
|
-
isQueryAllPage,
|
|
139
|
-
searchColumns,
|
|
140
|
-
};
|
|
141
|
-
if(!nOption.params)nOption.params = {};
|
|
142
|
-
Object.assign(nOption.params, params);
|
|
143
|
-
return nOption;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
//自动绑定toobar
|
|
147
|
-
function handleToolbar($grid, option) {
|
|
148
|
-
let selfConfig = getSelfConfig();
|
|
149
|
-
if (
|
|
150
|
-
option.bindToolbar
|
|
151
|
-
|| (option.bindToolbar !== false && selfConfig.bindToolbar)
|
|
152
|
-
) {
|
|
153
|
-
let loopDo = function (children) {
|
|
154
|
-
if (children && children.length) {
|
|
155
|
-
children.forEach((item) => {
|
|
156
|
-
if (item.$options.name === "VxeToolbar") {
|
|
157
|
-
$grid.connect(item);
|
|
158
|
-
} else {
|
|
159
|
-
loopDo(item.$children);
|
|
160
|
-
}
|
|
161
|
-
});
|
|
162
|
-
}
|
|
163
|
-
};
|
|
164
|
-
that.$nextTick(() => {
|
|
165
|
-
loopDo($grid.$children);
|
|
166
|
-
});
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
//操作列自动补全
|
|
171
|
-
function handleCustomAlign(option) {
|
|
172
|
-
let selfConfig = getSelfConfig();
|
|
173
|
-
// let customAlign = option.customAlign || selfConfig.customAlign || "right";
|
|
174
|
-
let customAlign
|
|
175
|
-
= selfConfig.customAlign === false
|
|
176
|
-
? false
|
|
177
|
-
: selfConfig.customAlign || "right";
|
|
178
|
-
customAlign
|
|
179
|
-
= option.customAlign === false ? false : option.customAlign || customAlign;
|
|
180
|
-
|
|
181
|
-
let customColumnWidth
|
|
182
|
-
= option.customColumnWidth || selfConfig.customColumnWidth || 47;
|
|
183
|
-
let checkBoxColumnWidth
|
|
184
|
-
= option.checkBoxColumnWidth || selfConfig.checkBoxColumnWidth || 48;
|
|
185
|
-
|
|
186
|
-
let checkBoxRequired = selfConfig.checkBoxRequired !== false;
|
|
187
|
-
if (option.checkBoxRequired === false) {
|
|
188
|
-
checkBoxRequired = false;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
let columnSize = option.columns.length;
|
|
192
|
-
if (columnSize > 0) {
|
|
193
|
-
if (checkBoxRequired) {
|
|
194
|
-
let firstColumn = option.columns[0];
|
|
195
|
-
if (firstColumn.type !== "checkbox") {
|
|
196
|
-
option.columns.splice(0, 0, {
|
|
197
|
-
type: "checkbox",
|
|
198
|
-
width: checkBoxColumnWidth,
|
|
199
|
-
resizable: false,
|
|
200
|
-
fixed: "left",
|
|
201
|
-
});
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
if (customAlign !== false) {
|
|
205
|
-
let lastColumn = option.columns[columnSize - 1];
|
|
206
|
-
if (customAlign === "left") {
|
|
207
|
-
if (!lastColumn.field && lastColumn.fixed === "right") {
|
|
208
|
-
option.columns.splice(columnSize - 1, 1);
|
|
209
|
-
lastColumn.fixed = "left";
|
|
210
|
-
option.columns.splice(1, 0, lastColumn);
|
|
211
|
-
} else if (columnSize > 1) {
|
|
212
|
-
if (option.columns[1].field) {
|
|
213
|
-
option.columns.splice(1, 0, {
|
|
214
|
-
width: customColumnWidth,
|
|
215
|
-
fixed: "left",
|
|
216
|
-
title: "",
|
|
217
|
-
sortable: false,
|
|
218
|
-
});
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
} else if (customAlign === "right") {
|
|
222
|
-
let column1 = option.columns[1];
|
|
223
|
-
if (!column1.field && column1.fixed === "left") {
|
|
224
|
-
option.columns.splice(1, 1);
|
|
225
|
-
column1.fixed = "right";
|
|
226
|
-
option.columns.push(column1);
|
|
227
|
-
} else if (lastColumn.field || lastColumn.fixed !== "right") {
|
|
228
|
-
option.columns.push({
|
|
229
|
-
width: customColumnWidth,
|
|
230
|
-
fixed: "right",
|
|
231
|
-
title: "",
|
|
232
|
-
sortable: false,
|
|
233
|
-
});
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
//列位置拖拽
|
|
241
|
-
function columnDrop(t, tableName, tableRef) {
|
|
242
|
-
let that = t;
|
|
243
|
-
const $table = getGrid(that, tableRef);
|
|
244
|
-
if (!$table) {
|
|
245
|
-
return;
|
|
246
|
-
}
|
|
247
|
-
if ($table.sortable) {
|
|
248
|
-
$table.sortable.destroy();
|
|
249
|
-
}
|
|
250
|
-
$table.sortable = configUtil.Sortable.create(
|
|
251
|
-
$table.$el.querySelector(
|
|
252
|
-
".body--wrapper>.vxe-table--header .vxe-header--row"
|
|
253
|
-
),
|
|
254
|
-
{
|
|
255
|
-
handle: ".vxe-header--column:not(.col--fixed)",
|
|
256
|
-
onEnd: ({item, newIndex, oldIndex}) => {
|
|
257
|
-
const {fullColumn, tableColumn,collectColumn} = $table.getTableColumn();
|
|
258
|
-
const targetThElem = item;
|
|
259
|
-
const wrapperElem = targetThElem.parentNode;
|
|
260
|
-
const newColumn = tableColumn[newIndex];
|
|
261
|
-
if (newColumn.fixed) {
|
|
262
|
-
// 错误的移动
|
|
263
|
-
if (newIndex > oldIndex) {
|
|
264
|
-
wrapperElem.insertBefore(
|
|
265
|
-
targetThElem,
|
|
266
|
-
wrapperElem.children[oldIndex]
|
|
267
|
-
);
|
|
268
|
-
} else {
|
|
269
|
-
wrapperElem.insertBefore(
|
|
270
|
-
wrapperElem.children[oldIndex],
|
|
271
|
-
targetThElem
|
|
272
|
-
);
|
|
273
|
-
}
|
|
274
|
-
return;
|
|
275
|
-
/* return that.$XModal.message({
|
|
276
|
-
content: '固定列不允许拖动!',
|
|
277
|
-
status: 'error'
|
|
278
|
-
}) */
|
|
279
|
-
}
|
|
280
|
-
// 转换真实索引
|
|
281
|
-
const oldColumnIndex = $table.getColumnIndex(collectColumn[oldIndex]);
|
|
282
|
-
const newColumnIndex = $table.getColumnIndex(collectColumn[newIndex]);
|
|
283
|
-
// 移动到目标列
|
|
284
|
-
let oldIndexFinal = oldColumnIndex;
|
|
285
|
-
let newIndexFinal = newColumnIndex;
|
|
286
|
-
// let oldIndexFinal = oldColumnIndex > newColumnIndex ? oldColumnIndex : newColumnIndex;
|
|
287
|
-
// let newIndexFinal = oldColumnIndex > newColumnIndex ? newColumnIndex : oldColumnIndex;
|
|
288
|
-
const currRow = collectColumn.splice(oldIndexFinal, 1)[0];
|
|
289
|
-
collectColumn.splice(newIndexFinal, 0, currRow);
|
|
290
|
-
$table.loadColumn(collectColumn);
|
|
291
|
-
addTableJson(that, $table, tableName, collectColumn);
|
|
292
|
-
},
|
|
293
|
-
}
|
|
294
|
-
);
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
function getSelfConfig() {
|
|
298
|
-
let tableConfig = configUtil.tableConfig || {};
|
|
299
|
-
let selfConfig = tableConfig.selfConfig || {};
|
|
300
|
-
return selfConfig;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
function initColumnDefaulAttrs(columns, opts) {
|
|
304
|
-
let tableConfig = configUtil.tableConfig || {};
|
|
305
|
-
let selfConfig = getSelfConfig();
|
|
306
|
-
let lockCheckboxWidth = opts.lockCheckboxWidth !== false ? (opts.lockCheckboxWidth || selfConfig.lockCheckboxWidth) : null;
|
|
307
|
-
let filterType = opts.filterType !== false && !opts.treeNodeUrl ? (opts.filterType || selfConfig.filterType || "filterContent") : null;
|
|
308
|
-
let sortAll = opts.sortAll === true || (opts.sortAll !== false && !opts.treeNodeUrl);
|
|
309
|
-
|
|
310
|
-
columns.forEach((column) => {
|
|
311
|
-
// 只有最底层的列(没有 children)才设置默认属性
|
|
312
|
-
if (!column.children || column.children.length === 0) {
|
|
313
|
-
// 设置 sortable
|
|
314
|
-
if (sortAll && column.title && (column.sortable === null || column.sortable === undefined)) {
|
|
315
|
-
column.sortable = true;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
// 设置过滤器
|
|
319
|
-
if (filterType && column.title && column.field) {
|
|
320
|
-
if (
|
|
321
|
-
column.filterType === "filterContent"
|
|
322
|
-
|| ((column.filterType === null || column.filterType === undefined) && filterType === "filterContent")
|
|
323
|
-
) {
|
|
324
|
-
if (!column.filters) {
|
|
325
|
-
column.filters = [
|
|
326
|
-
{
|
|
327
|
-
data: {},
|
|
328
|
-
},
|
|
329
|
-
];
|
|
330
|
-
}
|
|
331
|
-
if (!column.filterRender) {
|
|
332
|
-
column.filterRender = {
|
|
333
|
-
name: "FilterContent",
|
|
334
|
-
};
|
|
335
|
-
}
|
|
336
|
-
} else if (
|
|
337
|
-
column.filterType === "filterInput"
|
|
338
|
-
|| ((column.filterType === null || column.filterType === undefined) && filterType === "filterInput")
|
|
339
|
-
) {
|
|
340
|
-
if (!column.filters) {
|
|
341
|
-
column.filters = [
|
|
342
|
-
{
|
|
343
|
-
data: "",
|
|
344
|
-
},
|
|
345
|
-
];
|
|
346
|
-
}
|
|
347
|
-
if (!column.filterRender) {
|
|
348
|
-
column.filterRender = {
|
|
349
|
-
name: "FilterInput",
|
|
350
|
-
};
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
// 设置复选框列宽度
|
|
356
|
-
if (lockCheckboxWidth && column.type === "checkbox") {
|
|
357
|
-
column.width = lockCheckboxWidth;
|
|
358
|
-
}
|
|
359
|
-
} else {
|
|
360
|
-
column.sortable = false;
|
|
361
|
-
column.filterType = false;
|
|
362
|
-
column.align = "center";
|
|
363
|
-
column.resizable = false;
|
|
364
|
-
// 递归处理 children
|
|
365
|
-
initColumnDefaulAttrs(column.children, opts);
|
|
366
|
-
}
|
|
367
|
-
});
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
function initOption(opts) {
|
|
371
|
-
let result = {};
|
|
372
|
-
let that = opts.vue;
|
|
373
|
-
let $grid = getGrid(that, opts.tableRef);
|
|
374
|
-
|
|
375
|
-
let path = opts.path || "";
|
|
376
|
-
// let columns = JSON.parse(JSON.stringify(opts.columns || []));
|
|
377
|
-
let columns = opts.columns || [];
|
|
378
|
-
let isQueryAllPage = opts.isQueryAllPage;
|
|
379
|
-
let pagerLayouts = getPagerConfigLayouts(opts);
|
|
380
|
-
|
|
381
|
-
let config = opts.config || {};
|
|
382
|
-
|
|
383
|
-
initColumnDefaulAttrs(columns, opts);
|
|
384
|
-
|
|
385
|
-
let defaultOptions = {
|
|
386
|
-
columnKey: true,
|
|
387
|
-
resizable: true,
|
|
388
|
-
showOverflow: true,
|
|
389
|
-
showHeaderOverflow: true,
|
|
390
|
-
showFooterOverflow: true,
|
|
391
|
-
highlightHoverRow: true,
|
|
392
|
-
border: "inner",
|
|
393
|
-
height: "auto",
|
|
394
|
-
// maxHeight:"1000px",
|
|
395
|
-
// rowId: 'id',
|
|
396
|
-
emptyText: " ",
|
|
397
|
-
sortConfig: {
|
|
398
|
-
trigger: "cell",
|
|
399
|
-
remote: false,
|
|
400
|
-
},
|
|
401
|
-
filterConfig: {
|
|
402
|
-
remote: false,
|
|
403
|
-
},
|
|
404
|
-
pagerConfig: {
|
|
405
|
-
autoHidden: true,
|
|
406
|
-
perfect: true,
|
|
407
|
-
pageSize: 200,
|
|
408
|
-
pageSizes: [50, 100, 200, 500],
|
|
409
|
-
layouts: pagerLayouts,
|
|
410
|
-
slots: {
|
|
411
|
-
left: (obj, b, c) => {
|
|
412
|
-
let $grid = obj.$grid;
|
|
413
|
-
let k = $grid.$data;
|
|
414
|
-
let tableDataInfo = $grid.getTableData();
|
|
415
|
-
let data = tableDataInfo.fullData;
|
|
416
|
-
let h = $grid.$createElement;
|
|
417
|
-
|
|
418
|
-
let proxyInfo = $grid.getProxyInfo();
|
|
419
|
-
let pager = proxyInfo ? proxyInfo.pager : null;
|
|
420
|
-
|
|
421
|
-
let celems = [
|
|
422
|
-
h("span", $grid.$t2("本页记录数", "components.table.currentNum")),
|
|
423
|
-
h(
|
|
424
|
-
"span",
|
|
425
|
-
{
|
|
426
|
-
attrs: {
|
|
427
|
-
class: "f-red",
|
|
428
|
-
},
|
|
429
|
-
},
|
|
430
|
-
" " + tableDataInfo.visibleData.length + " "
|
|
431
|
-
),
|
|
432
|
-
];
|
|
433
|
-
if (pager && $grid.isQueryAllPage) {
|
|
434
|
-
celems.push(
|
|
435
|
-
h(
|
|
436
|
-
"span",
|
|
437
|
-
"," + $grid.$t2("总记录数", "components.table.totalNum")
|
|
438
|
-
)
|
|
439
|
-
);
|
|
440
|
-
celems.push(
|
|
441
|
-
h(
|
|
442
|
-
"span",
|
|
443
|
-
{
|
|
444
|
-
attrs: {
|
|
445
|
-
class: "f-red",
|
|
446
|
-
},
|
|
447
|
-
},
|
|
448
|
-
" " + pager.total + " "
|
|
449
|
-
)
|
|
450
|
-
);
|
|
451
|
-
}
|
|
452
|
-
let elem = h("span", {}, celems);
|
|
453
|
-
return [elem];
|
|
454
|
-
},
|
|
455
|
-
},
|
|
456
|
-
},
|
|
457
|
-
exportConfig: {
|
|
458
|
-
// 默认选中类型
|
|
459
|
-
type: "xlsx",
|
|
460
|
-
// 局部自定义类型
|
|
461
|
-
types: ["xlsx", "csv", "html", "xml", "txt"],
|
|
462
|
-
// 自定义数据量列表
|
|
463
|
-
modes: ["current", "all"],
|
|
464
|
-
},
|
|
465
|
-
radioConfig: {
|
|
466
|
-
labelField: "id",
|
|
467
|
-
reserve: true,
|
|
468
|
-
highlight: true,
|
|
469
|
-
},
|
|
470
|
-
checkboxConfig: {
|
|
471
|
-
highlight: true,
|
|
472
|
-
},
|
|
473
|
-
customConfig: {
|
|
474
|
-
storage: false,
|
|
475
|
-
},
|
|
476
|
-
scrollX: {
|
|
477
|
-
// enabled: true,
|
|
478
|
-
gt: 10,
|
|
479
|
-
// oSize: 5
|
|
480
|
-
},
|
|
481
|
-
/*loadingConfig: {
|
|
482
|
-
icon: "vxe-loading--spinner",
|
|
483
|
-
text: ' '
|
|
484
|
-
},*/
|
|
485
|
-
columns: columns,
|
|
486
|
-
};
|
|
487
|
-
let tableDefaultConfig
|
|
488
|
-
= corejsConfig?.componentConfig?.table?.defaultConfig || {};
|
|
489
|
-
defaultOptions = configUtil.extendDeeply(defaultOptions, tableConfig);
|
|
490
|
-
defaultOptions = configUtil.extendDeeply(defaultOptions, customConfig);
|
|
491
|
-
defaultOptions = configUtil.extendDeeply(defaultOptions, tableDefaultConfig);
|
|
492
|
-
|
|
493
|
-
if (opts.path) {
|
|
494
|
-
// defaultOptions.filterInput = true;
|
|
495
|
-
defaultOptions.pagerConfig.autoHidden = false;
|
|
496
|
-
defaultOptions.proxyConfig = {
|
|
497
|
-
seq: true, // 启用动态序号代理
|
|
498
|
-
sort: true, // 启用排序代理
|
|
499
|
-
filter: true, // 启用筛选代理
|
|
500
|
-
props: {
|
|
501
|
-
result: "objx.records", // 配置响应结果列表字段
|
|
502
|
-
total: "objx.total", // 配置响应结果总页数字段
|
|
503
|
-
},
|
|
504
|
-
ajax: {
|
|
505
|
-
// 接收 Promise 对象
|
|
506
|
-
query: ({page, sorts, filters, form}) => {
|
|
507
|
-
if (!opts.path) {
|
|
508
|
-
return;
|
|
509
|
-
}
|
|
510
|
-
return new Promise((resolve, reject) => {
|
|
511
|
-
let toDo = () => {
|
|
512
|
-
let formData = opts.param ? opts.param() || {} : {};
|
|
513
|
-
const queryParams = Object.assign({}, formData);
|
|
514
|
-
|
|
515
|
-
// 处理排序条件
|
|
516
|
-
/*const firstSort = sorts[0];
|
|
517
|
-
if (firstSort) {
|
|
518
|
-
queryParams.sort = firstSort.property;
|
|
519
|
-
queryParams.order = firstSort.order;
|
|
520
|
-
}*/
|
|
521
|
-
// 处理筛选条件
|
|
522
|
-
filters.forEach(({property, values}) => {
|
|
523
|
-
queryParams[property] = values.join(",");
|
|
524
|
-
});
|
|
525
|
-
if (page.pageSize !== undefined) {
|
|
526
|
-
queryParams["size"] = page.pageSize;
|
|
527
|
-
queryParams["current"] = page.currentPage;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
let $grid = getGrid(that, opts.tableRef);
|
|
531
|
-
let isQueryAllPage = $grid.isQueryAllPage;
|
|
532
|
-
let pathStr1 = "";
|
|
533
|
-
if (isQueryAllPage === false) {
|
|
534
|
-
queryParams.searchCount = false;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
let reqPath = typeof path === "function" ? path() : path;
|
|
538
|
-
let addUserForTableEnabled
|
|
539
|
-
= settingConfig.addUserForTableDisabled !== true;
|
|
540
|
-
let addCreateInfo
|
|
541
|
-
= opts.addCreateInfo === true || addUserForTableEnabled;
|
|
542
|
-
let queryCreateInfo
|
|
543
|
-
= opts.queryCreateInfo === true || addUserForTableEnabled;
|
|
544
|
-
that.$commonHttp({
|
|
545
|
-
aes: opts.aes || false,
|
|
546
|
-
url: reqPath,
|
|
547
|
-
method: "post",
|
|
548
|
-
data: queryParams,
|
|
549
|
-
addCreateInfo: addCreateInfo,
|
|
550
|
-
queryCreateInfo: queryCreateInfo,
|
|
551
|
-
callback: (res) => {
|
|
552
|
-
resolve(res);
|
|
553
|
-
if (res.type === "success") {
|
|
554
|
-
let rows = res.objx
|
|
555
|
-
? res.objx.records || res.objx || []
|
|
556
|
-
: [];
|
|
557
|
-
if (opts.treeNodeUrl) {
|
|
558
|
-
if (rows.length > 0) {
|
|
559
|
-
let $t = getGrid(that, opts.tableRef);
|
|
560
|
-
let treeConditions = $t.params.originOption.treeConditions || [
|
|
561
|
-
"enabled",
|
|
562
|
-
];
|
|
563
|
-
let treeFiled = Object.keys(formData).some((key) => {
|
|
564
|
-
return (
|
|
565
|
-
!treeConditions.includes(key)
|
|
566
|
-
&& formData[key] !== null && formData[key] !== undefined
|
|
567
|
-
&& formData[key] !== ""
|
|
568
|
-
);
|
|
569
|
-
});
|
|
570
|
-
if (treeFiled) {
|
|
571
|
-
that.$nextTick(() => {
|
|
572
|
-
setTimeout(function () {
|
|
573
|
-
let isLazy = $t.treeConfig.lazy;
|
|
574
|
-
$t.treeConfig.lazy = false;
|
|
575
|
-
$t.setAllTreeExpand(true).then(() => {
|
|
576
|
-
let fullAllDataRowMap
|
|
577
|
-
= $t.$refs.xTable.fullAllDataRowMap;
|
|
578
|
-
let fullData = $t.getTableData().fullData;
|
|
579
|
-
fullData.forEach((lineData) => {
|
|
580
|
-
if (
|
|
581
|
-
$t.$refs.xTable.isTreeExpandByRow(lineData)
|
|
582
|
-
) {
|
|
583
|
-
let rest = fullAllDataRowMap.get(lineData);
|
|
584
|
-
rest.treeLoaded = true;
|
|
585
|
-
}
|
|
586
|
-
});
|
|
587
|
-
$t.treeConfig.lazy = isLazy;
|
|
588
|
-
});
|
|
589
|
-
}, 0);
|
|
590
|
-
});
|
|
591
|
-
} else {
|
|
592
|
-
let row = rows[0];
|
|
593
|
-
if (row[result.treeConfig.hasChild]) {
|
|
594
|
-
that.$nextTick(() => {
|
|
595
|
-
setTimeout(function () {
|
|
596
|
-
$t.setTreeExpand(row, true);
|
|
597
|
-
}, 0);
|
|
598
|
-
});
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
if (opts.callback) {
|
|
604
|
-
that.$nextTick(() => {
|
|
605
|
-
setTimeout(function () {
|
|
606
|
-
opts.callback(rows, res);
|
|
607
|
-
}, 0);
|
|
608
|
-
});
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
},
|
|
612
|
-
error: (error) => {
|
|
613
|
-
reject(error);
|
|
614
|
-
},
|
|
615
|
-
});
|
|
616
|
-
};
|
|
617
|
-
let index = 0;
|
|
618
|
-
let loopHandle = () => {
|
|
619
|
-
if (index < 500 && $grid.tableFormStop === true) {
|
|
620
|
-
//阻塞列表查询,或者次数达到500时,自动释放
|
|
621
|
-
index++;
|
|
622
|
-
setTimeout(() => {
|
|
623
|
-
loopHandle();
|
|
624
|
-
}, 10);
|
|
625
|
-
} else {
|
|
626
|
-
if ($grid.tableFormStop) $grid.tableFormStop = false;
|
|
627
|
-
toDo();
|
|
628
|
-
}
|
|
629
|
-
};
|
|
630
|
-
loopHandle();
|
|
631
|
-
});
|
|
632
|
-
},
|
|
633
|
-
// 被某些特殊功能所触发,例如:导出数据 mode=all 时,会触发该方法并对返回的数据进行导出
|
|
634
|
-
queryAll: () => fetch(path || "").then((response) => response.json()),
|
|
635
|
-
},
|
|
636
|
-
};
|
|
637
|
-
/*defaultOptions.scrollX = {
|
|
638
|
-
enabled: true,
|
|
639
|
-
gt: 20
|
|
640
|
-
};*/
|
|
641
|
-
defaultOptions.scrollY = {
|
|
642
|
-
// enabled: false,
|
|
643
|
-
gt: 20,
|
|
644
|
-
oSize: 20,
|
|
645
|
-
};
|
|
646
|
-
} else {
|
|
647
|
-
if (!$grid.height && (!opts.config || !opts.config.height)) {
|
|
648
|
-
defaultOptions.maxHeight = "528px";
|
|
649
|
-
}
|
|
650
|
-
defaultOptions.scrollY = {
|
|
651
|
-
// enabled: false,
|
|
652
|
-
gt: 20,
|
|
653
|
-
oSize: 20,
|
|
654
|
-
};
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
if (opts.editSaveUrl) {
|
|
658
|
-
(defaultOptions.keepSource = true),
|
|
659
|
-
(defaultOptions.editConfig = {
|
|
660
|
-
trigger: "manual",
|
|
661
|
-
mode: "row",
|
|
662
|
-
showStatus: true,
|
|
663
|
-
autoClear: false,
|
|
664
|
-
});
|
|
665
|
-
}
|
|
666
|
-
if (opts.treeNodeUrl) {
|
|
667
|
-
defaultOptions.proxyConfig.props.result = "objx";
|
|
668
|
-
defaultOptions.pagerConfig.autoHidden = true;
|
|
669
|
-
defaultOptions.treeConfig = {
|
|
670
|
-
lazy: true,
|
|
671
|
-
children: "children",
|
|
672
|
-
hasChild: "hasChild", // 设置是否有子节点标识
|
|
673
|
-
parentField: "parent",
|
|
674
|
-
transform: true,
|
|
675
|
-
loadMethod({$table, row}) {
|
|
676
|
-
// 模拟后台接口
|
|
677
|
-
return new Promise((resolve, reject) => {
|
|
678
|
-
let treeNodeParam = opts.treeNodeParam
|
|
679
|
-
? opts.treeNodeParam(row) || {}
|
|
680
|
-
: {
|
|
681
|
-
parent: row.id,
|
|
682
|
-
};
|
|
683
|
-
that.$http({
|
|
684
|
-
aes: opts.aes || false,
|
|
685
|
-
url: opts.treeNodeUrl,
|
|
686
|
-
method: "post",
|
|
687
|
-
data: treeNodeParam,
|
|
688
|
-
callback: (res) => {
|
|
689
|
-
if (res.type === "success") {
|
|
690
|
-
// let rows = res.objx || [];
|
|
691
|
-
let rows = res.objx ? res.objx.records || res.objx || [] : [];
|
|
692
|
-
let hasChildField = $grid.treeConfig.hasChild;
|
|
693
|
-
if (row[hasChildField] && !rows.length) {
|
|
694
|
-
row[hasChildField] = false;
|
|
695
|
-
}
|
|
696
|
-
resolve(rows);
|
|
697
|
-
if (opts.treeCallback) {
|
|
698
|
-
that.$nextTick(() => {
|
|
699
|
-
setTimeout(function () {
|
|
700
|
-
opts.treeCallback(rows, res);
|
|
701
|
-
}, 0);
|
|
702
|
-
});
|
|
703
|
-
}
|
|
704
|
-
} else {
|
|
705
|
-
reject(res);
|
|
706
|
-
}
|
|
707
|
-
},
|
|
708
|
-
});
|
|
709
|
-
});
|
|
710
|
-
},
|
|
711
|
-
};
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
result = configUtil.extendDeeply(defaultOptions, config);
|
|
715
|
-
|
|
716
|
-
let pageSize = result.pagerConfig.pageSize;
|
|
717
|
-
let pageSizes = result.pagerConfig.pageSizes;
|
|
718
|
-
if (pageSizes && !pageSizes.includes(pageSize)) {
|
|
719
|
-
for (let i = 0; i < pageSizes.length; i++) {
|
|
720
|
-
let item = pageSizes[i];
|
|
721
|
-
if (item > pageSize) {
|
|
722
|
-
pageSizes.splice(i, 0, pageSize);
|
|
723
|
-
break;
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
return result;
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
function getTableJson(tableName, that, success) {
|
|
732
|
-
if (
|
|
733
|
-
configUtil.tableConfig.disableTableName
|
|
734
|
-
|| settingConfig.tableStorageDisabled
|
|
735
|
-
)
|
|
736
|
-
return false;
|
|
737
|
-
if (!tableName) return;
|
|
738
|
-
let url = USER_PREFIX + "/table_column/getTableJson";
|
|
739
|
-
let data = {
|
|
740
|
-
tableName: tableName,
|
|
741
|
-
};
|
|
742
|
-
let json = null;
|
|
743
|
-
return that.$http({
|
|
744
|
-
url: url,
|
|
745
|
-
method: "post",
|
|
746
|
-
data: data,
|
|
747
|
-
success: success,
|
|
748
|
-
});
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
function addTableExportJson() {
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
function addTableJson(that, $grid, tableName, columns, success) {
|
|
755
|
-
if (
|
|
756
|
-
configUtil.tableConfig.disableTableName
|
|
757
|
-
|| settingConfig.tableStorageDisabled
|
|
758
|
-
)
|
|
759
|
-
return false;
|
|
760
|
-
if (!tableName) return;
|
|
761
|
-
if (!columns) {
|
|
762
|
-
columns = $grid.getTableColumn().collectColumn;
|
|
763
|
-
}
|
|
764
|
-
let saveColumn = [];
|
|
765
|
-
columns.forEach(function (item, index) {
|
|
766
|
-
let columnData = {
|
|
767
|
-
field: item.field || item.property,
|
|
768
|
-
title: item.title,
|
|
769
|
-
visible: item.visible,
|
|
770
|
-
width: item.renderWidth || item.width,
|
|
771
|
-
};
|
|
772
|
-
|
|
773
|
-
// 如果有 children,递归处理
|
|
774
|
-
if (item.children && item.children.length > 0) {
|
|
775
|
-
columnData.children = processChildren(item.children);
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
saveColumn.push(columnData);
|
|
779
|
-
});
|
|
780
|
-
|
|
781
|
-
// 处理 children 的递归函数
|
|
782
|
-
function processChildren(children) {
|
|
783
|
-
let result = [];
|
|
784
|
-
children.forEach(function (childItem) {
|
|
785
|
-
let childData = {
|
|
786
|
-
field: childItem.field || childItem.property,
|
|
787
|
-
title: childItem.title,
|
|
788
|
-
visible: childItem.visible,
|
|
789
|
-
width: childItem.renderWidth || childItem.width,
|
|
790
|
-
};
|
|
791
|
-
|
|
792
|
-
// 递归处理嵌套的 children
|
|
793
|
-
if (childItem.children && childItem.children.length > 0) {
|
|
794
|
-
childData.children = processChildren(childItem.children);
|
|
795
|
-
}
|
|
796
|
-
|
|
797
|
-
result.push(childData);
|
|
798
|
-
});
|
|
799
|
-
return result;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
let searchColumns = $grid.params.searchColumns || [];
|
|
803
|
-
let jsonData = {
|
|
804
|
-
columns: saveColumn,
|
|
805
|
-
searchColumns: searchColumns,
|
|
806
|
-
};
|
|
807
|
-
if ($grid.exportColumns && $grid.exportColumns.length) {
|
|
808
|
-
jsonData.exportColumns = $grid.exportColumns;
|
|
809
|
-
}
|
|
810
|
-
if ($grid.exportItemColumns && $grid.exportItemColumns.length) {
|
|
811
|
-
jsonData.exportItemColumns = $grid.exportItemColumns;
|
|
812
|
-
}
|
|
813
|
-
console.log("jsonData", jsonData);
|
|
814
|
-
let json = encodeURIComponent(JSON.stringify(jsonData));
|
|
815
|
-
|
|
816
|
-
let url = USER_PREFIX + "/table_column/addTableJson";
|
|
817
|
-
let data = {
|
|
818
|
-
tableName: tableName,
|
|
819
|
-
// json: encodeURIComponent(JSON.stringify(saveColumn)),
|
|
820
|
-
json: json,
|
|
821
|
-
};
|
|
822
|
-
that.$http({
|
|
823
|
-
url: url,
|
|
824
|
-
method: "post",
|
|
825
|
-
data: data,
|
|
826
|
-
success: success,
|
|
827
|
-
});
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
function initColumnIndex(columns) {
|
|
831
|
-
columns.forEach(function (column, index) {
|
|
832
|
-
if(!column.params)column.params = {}
|
|
833
|
-
if (column.params) {
|
|
834
|
-
column.params._index = index;
|
|
835
|
-
}
|
|
836
|
-
if (column.children && column.children.length > 0) {
|
|
837
|
-
initColumnIndex(column.children);
|
|
838
|
-
}
|
|
839
|
-
});
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
function initColumn(option, syncColumns) {
|
|
843
|
-
let oldColumns = option.columns;
|
|
844
|
-
let newColumns = [];
|
|
845
|
-
if (syncColumns) {
|
|
846
|
-
let fields = [];
|
|
847
|
-
syncColumns.forEach(function (syncColumn) {
|
|
848
|
-
let field = syncColumn.field;
|
|
849
|
-
if (field) {
|
|
850
|
-
oldColumns.some(function (oldColumn,index) {
|
|
851
|
-
let flag = oldColumn.field === field;
|
|
852
|
-
if (flag) {
|
|
853
|
-
if(!oldColumn.params)oldColumn.params = {}
|
|
854
|
-
let visibleSync = option.visibleSync !== false && oldColumn.visibleSync !== false;
|
|
855
|
-
oldColumn.params._visible = oldColumn.visible ?? true;
|
|
856
|
-
if (visibleSync) {
|
|
857
|
-
oldColumn.visible = syncColumn.visible;
|
|
858
|
-
}
|
|
859
|
-
if(oldColumn.width !== undefined && oldColumn.width !== undefined){
|
|
860
|
-
oldColumn.params._width = oldColumn.width;
|
|
861
|
-
}
|
|
862
|
-
if (syncColumn.width) oldColumn.width = syncColumn.width;
|
|
863
|
-
newColumns.push(oldColumn);
|
|
864
|
-
fields.push(field);
|
|
865
|
-
}
|
|
866
|
-
return flag;
|
|
867
|
-
});
|
|
868
|
-
}
|
|
869
|
-
});
|
|
870
|
-
oldColumns.forEach(function (oldColumn, index) {
|
|
871
|
-
let field = oldColumn.field;
|
|
872
|
-
if (field) {
|
|
873
|
-
if (!fields.includes(field)) {
|
|
874
|
-
newColumns.splice(index, 0, oldColumn);
|
|
875
|
-
}
|
|
876
|
-
} else {
|
|
877
|
-
newColumns.splice(index, 0, oldColumn);
|
|
878
|
-
}
|
|
879
|
-
});
|
|
880
|
-
|
|
881
|
-
// 处理 children 中的列
|
|
882
|
-
if (syncColumns.length > 0) {
|
|
883
|
-
newColumns.forEach(function (newColumn) {
|
|
884
|
-
if (newColumn.children && newColumn.children.length > 0) {
|
|
885
|
-
// 在 syncColumns 中查找对应的父列
|
|
886
|
-
let syncParentColumn = syncColumns.find(function (syncCol) {
|
|
887
|
-
return syncCol.field === newColumn.field;
|
|
888
|
-
});
|
|
889
|
-
if (syncParentColumn && syncParentColumn.children && syncParentColumn.children.length > 0) {
|
|
890
|
-
// 递归处理 children
|
|
891
|
-
newColumn.children = initColumn({ columns: newColumn.children }, syncParentColumn.children);
|
|
892
|
-
}
|
|
893
|
-
}
|
|
894
|
-
});
|
|
895
|
-
}
|
|
896
|
-
} else {
|
|
897
|
-
newColumns = oldColumns;
|
|
898
|
-
}
|
|
899
|
-
return newColumns;
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
function initExportColumns($grid, json) {
|
|
903
|
-
if (json?.exportColumns?.length) {
|
|
904
|
-
$grid.exportColumns = json.exportColumns;
|
|
905
|
-
}
|
|
906
|
-
if (json?.exportItemColumns?.length) {
|
|
907
|
-
$grid.exportItemColumns = json.exportItemColumns;
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
function initSearchColumns(oriColumns, syncColumns) {
|
|
912
|
-
let oldColumns = oriColumns || [];
|
|
913
|
-
let newColumns = [];
|
|
914
|
-
if (syncColumns) {
|
|
915
|
-
let fields = [];
|
|
916
|
-
syncColumns.forEach(function (syncColumn) {
|
|
917
|
-
let field = syncColumn.field;
|
|
918
|
-
if (field) {
|
|
919
|
-
oldColumns.some(function (oldColumn) {
|
|
920
|
-
let flag = oldColumn.field === field && !oldColumn.fixed;
|
|
921
|
-
if (flag) {
|
|
922
|
-
oldColumn.common = syncColumn.common || false;
|
|
923
|
-
if (syncColumn.defaultValue !== undefined) {
|
|
924
|
-
oldColumn.defaultValue = syncColumn.defaultValue;
|
|
925
|
-
}
|
|
926
|
-
newColumns.push(oldColumn);
|
|
927
|
-
fields.push(field);
|
|
928
|
-
}
|
|
929
|
-
return flag;
|
|
930
|
-
});
|
|
931
|
-
}
|
|
932
|
-
});
|
|
933
|
-
oldColumns.forEach(function (oldColumn, index) {
|
|
934
|
-
let field = oldColumn.field;
|
|
935
|
-
if (field && !oldColumn.fixed) {
|
|
936
|
-
if (!fields.includes(field)) {
|
|
937
|
-
newColumns.splice(index, 0, oldColumn);
|
|
938
|
-
}
|
|
939
|
-
} else {
|
|
940
|
-
newColumns.splice(index, 0, oldColumn);
|
|
941
|
-
}
|
|
942
|
-
});
|
|
943
|
-
} else {
|
|
944
|
-
newColumns = oldColumns;
|
|
945
|
-
}
|
|
946
|
-
return newColumns.length ? newColumns : oldColumns;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
function onColumnWitchChange(option) {
|
|
950
|
-
let that = option.$grid.$parent;
|
|
951
|
-
let $grid = option.$grid;
|
|
952
|
-
let originOption = $grid.params.originOption;
|
|
953
|
-
let tableName = originOption.tableName;
|
|
954
|
-
if (tableName) {
|
|
955
|
-
// let columns = $grid.columns;
|
|
956
|
-
const {fullColumn, tableColumn} = $grid.getTableColumn();
|
|
957
|
-
addTableJson(that, $grid, tableName);
|
|
958
|
-
}
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
function restoreColumnPosition(currentColumns) {
|
|
962
|
-
// 根据 params._index 排序 currentColumns
|
|
963
|
-
let sortedColumns = [...currentColumns].sort((a, b) => {
|
|
964
|
-
let indexA = a.params?._index ?? 0;
|
|
965
|
-
let indexB = b.params?._index ?? 0;
|
|
966
|
-
return indexA - indexB;
|
|
967
|
-
});
|
|
968
|
-
console.log("sortedColumns",sortedColumns);
|
|
969
|
-
|
|
970
|
-
// 递归处理 children
|
|
971
|
-
sortedColumns.forEach((column) => {
|
|
972
|
-
if (column.children && column.children.length > 0) {
|
|
973
|
-
column.children = restoreColumnPosition(column.children);
|
|
974
|
-
}else{
|
|
975
|
-
column.visible = column.params?._visible ?? true;
|
|
976
|
-
if(column.params?._width !== undefined){
|
|
977
|
-
column.width = column.params?._width
|
|
978
|
-
}else{
|
|
979
|
-
// delete column.width;
|
|
980
|
-
}
|
|
981
|
-
}
|
|
982
|
-
});
|
|
983
|
-
|
|
984
|
-
return sortedColumns;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
function customHandle(option) {
|
|
988
|
-
let that = option.$grid.$parent;
|
|
989
|
-
let $grid = option.$grid;
|
|
990
|
-
let originOption = $grid.params.originOption;
|
|
991
|
-
if (option.type === "confirm" || option.type === "reset") {
|
|
992
|
-
let tableName = originOption.tableName;
|
|
993
|
-
if (option.type === "reset") {
|
|
994
|
-
const {collectColumn} = $grid.getTableColumn();
|
|
995
|
-
/* const loopDo = (columns)=>{
|
|
996
|
-
columns.forEach((item)=>{
|
|
997
|
-
if(item.children && item.children.length){
|
|
998
|
-
loopDo(item.children);
|
|
999
|
-
}else{
|
|
1000
|
-
if(item.params){
|
|
1001
|
-
item.visible = item.params._visible ?? true;
|
|
1002
|
-
if(item.params._width !== undefined)item.width = item.params._width;
|
|
1003
|
-
}
|
|
1004
|
-
}
|
|
1005
|
-
})
|
|
1006
|
-
}
|
|
1007
|
-
loopDo(collectColumn); */
|
|
1008
|
-
|
|
1009
|
-
// 还原列的位置
|
|
1010
|
-
let oldColumns = originOption.columns || [];
|
|
1011
|
-
if (oldColumns.length > 0) {
|
|
1012
|
-
const restoredColumns = restoreColumnPosition(collectColumn);
|
|
1013
|
-
console.log("restoredColumns",restoredColumns);
|
|
1014
|
-
$grid.loadColumn(restoredColumns);
|
|
1015
|
-
} else {
|
|
1016
|
-
$grid.loadColumn(collectColumn);
|
|
1017
|
-
}
|
|
1018
|
-
// let columns = that.$baseLodash.cloneDeep(originOption.columns);
|
|
1019
|
-
// initColumnDefaulAttrs(columns, originOption);
|
|
1020
|
-
// $grid.columns = columns;
|
|
1021
|
-
}
|
|
1022
|
-
if (tableName) {
|
|
1023
|
-
setTimeout(() => {
|
|
1024
|
-
addTableJson(that, $grid, tableName);
|
|
1025
|
-
}, 200);
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
if (option && option.$event && option.$event.preventDefault) {
|
|
1029
|
-
option.$event.preventDefault(); // 取消事件的默认行为
|
|
1030
|
-
}
|
|
1031
|
-
}
|
|
1032
|
-
originOption.customCallback && originOption.customCallback(option);
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
|
-
function changeSelectCount(checked) {
|
|
1036
|
-
let checkedLength = checked.records.length;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
function getTableData(that, tableRef, type, success) {
|
|
1040
|
-
if (
|
|
1041
|
-
configUtil.tableConfig.disableTableName
|
|
1042
|
-
|| settingConfig.tableStorageDisabled
|
|
1043
|
-
)
|
|
1044
|
-
return false;
|
|
1045
|
-
let $grid = getGrid(that, tableRef);
|
|
1046
|
-
let tableName = $grid.tableName;
|
|
1047
|
-
let url = USER_PREFIX + "/table_column/getTableData";
|
|
1048
|
-
let param = {
|
|
1049
|
-
tableName: tableName,
|
|
1050
|
-
type: type,
|
|
1051
|
-
};
|
|
1052
|
-
let data = null;
|
|
1053
|
-
return that.$http({
|
|
1054
|
-
async: false,
|
|
1055
|
-
url: url,
|
|
1056
|
-
method: "post",
|
|
1057
|
-
data: param,
|
|
1058
|
-
success: success,
|
|
1059
|
-
});
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
function addTableData(that, tableRef, value, success) {
|
|
1063
|
-
if (
|
|
1064
|
-
configUtil.tableConfig.disableTableName
|
|
1065
|
-
|| settingConfig.tableStorageDisabled
|
|
1066
|
-
)
|
|
1067
|
-
return false;
|
|
1068
|
-
let $grid = getGrid(that, tableRef);
|
|
1069
|
-
let tableName = $grid.tableName;
|
|
1070
|
-
if (tableName) {
|
|
1071
|
-
that.$http({
|
|
1072
|
-
method: "post",
|
|
1073
|
-
url: USER_PREFIX + "/table_column/addTableData",
|
|
1074
|
-
data: {
|
|
1075
|
-
tableName: tableName,
|
|
1076
|
-
type: "isQueryAllPage",
|
|
1077
|
-
data: value,
|
|
1078
|
-
success: success,
|
|
1079
|
-
},
|
|
1080
|
-
});
|
|
1081
|
-
}
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
|
-
function checkQueryTotal(that, tableRef, value) {
|
|
1085
|
-
let $grid = getGrid(that, tableRef);
|
|
1086
|
-
$grid.isQueryAllPage = value;
|
|
1087
|
-
let tableName = $grid.tableName;
|
|
1088
|
-
let option = $grid.getProxyInfo();
|
|
1089
|
-
let pagerConfig = $grid.pagerConfig;
|
|
1090
|
-
|
|
1091
|
-
$grid.pagerConfig.layouts = pagerConfig.layouts || [];
|
|
1092
|
-
addTableData(that, tableRef, value);
|
|
1093
|
-
$grid.commitProxy("query");
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
function getPagerConfigLayouts(opts) {
|
|
1097
|
-
if (opts.showPageSizes !== false) {
|
|
1098
|
-
return ["Sizes", "PrevPage", "JumpNumber", "NextPage"];
|
|
1099
|
-
} else {
|
|
1100
|
-
return ["PrevPage", "JumpNumber", "NextPage"];
|
|
1101
|
-
}
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
modules = {
|
|
1105
|
-
initVxeTable,
|
|
1106
|
-
columnDrop,
|
|
1107
|
-
initOption,
|
|
1108
|
-
getTableJson,
|
|
1109
|
-
addTableJson,
|
|
1110
|
-
onColumnWitchChange,
|
|
1111
|
-
customHandle,
|
|
1112
|
-
changeSelectCount,
|
|
1113
|
-
getTableData,
|
|
1114
|
-
addTableData,
|
|
1115
|
-
checkQueryTotal,
|
|
1116
|
-
getCellValue,
|
|
1117
|
-
createParams,
|
|
1118
|
-
};
|
|
1119
|
-
|
|
1120
|
-
if (!configUtil.Vue.prototype.$vxeTableUtil)
|
|
1121
|
-
configUtil.Vue.prototype.$vxeTableUtil = modules;
|
|
1122
|
-
|
|
10
|
+
import { getCellValue, createParams } from "./util/index";
|
|
11
|
+
var _0x84623c=["\u0031\u0031\u0037\u002e",".711".split("").reverse().join(""),".711".split("").reverse().join(""),"\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e",".321.401.701.101.201.201.39.801.311.59".split("").reverse().join(""),"\u0031\u0030\u0036\u002e\u0039\u0037\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0036\u002e\u0039\u0038\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0032\u002e\u0031\u0031\u0033\u002e","\u0031\u0032\u0033\u002e\u0039\u0036\u002e\u0031\u0031\u0030\u002e\u0039\u0037\u002e\u0031\u0032\u0035\u002e","\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0031\u0031\u0031\u002e\u0031\u0032\u0035\u002e","\u0033\u0039\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0039\u002e\u0031\u0031\u0032\u002e\u0033\u0036\u002e\u0033\u0036\u002e\u0031\u0032\u0036\u002e\u0031\u0032\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0032\u0031\u002e\u0031\u0032\u0031\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e\u0035\u0035\u002e\u0033\u0039\u002e\u0031\u0032\u0037\u002e\u0031\u0031\u0033\u002e\u0031\u0030\u0038\u002e\u0033\u0036\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0033\u0036\u002e\u0033\u0036\u002e\u0039\u0037\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0039\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e\u0034\u0031\u002e\u0033\u0039\u002e\u0031\u0032\u0037\u002e\u0031\u0031\u0033\u002e\u0031\u0030\u0038\u002e\u0033\u0036\u002e\u0039\u0037\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0039\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e\u0033\u0036\u002e\u0033\u0036\u002e\u0031\u0032\u0033\u002e\u0031\u0030\u0032\u002e\u0031\u0032\u0036\u002e","\u0031\u0030\u0036\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0031\u002e\u0039\u0036\u002e\u0031\u0030\u0039\u002e","\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e","\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e",".521.301.801.521.301.201.47.321.801.521.101.69.111".split("").reverse().join(""),"\u0031\u0031\u0031\u002e\u0039\u0036\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e\u0037\u0034\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0033\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0033\u002e\u0031\u0032\u0035\u002e","\u0031\u0031\u0034\u002e\u0033\u002e\u0034\u0031\u002e\u0034\u0031\u002e\u0034\u0033\u002e\u0031\u0030\u0039\u002e\u0031\u0030\u0034\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e\u0034\u0033\u002e\u0035\u0031\u002e\u0034\u0031\u002e\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e\u0033\u002e\u0031\u0031\u0036\u002e","\u0031\u0031\u0034\u002e\u0033\u002e\u0034\u0031\u002e\u0034\u0031\u002e\u0034\u0033\u002e\u0031\u0030\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0038\u002e\u0034\u0033\u002e\u0035\u0031\u002e\u0034\u0031\u002e\u0034\u0033\u002e\u0037\u0039\u002e\u0039\u0036\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e\u0037\u0034\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0033\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0033\u002e\u0031\u0032\u0035\u002e\u0034\u0033\u002e\u0033\u002e\u0031\u0031\u0036\u002e","\u0031\u0030\u0036\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0033\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e","\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e",".301.401.121.221".split("").reverse().join(""),"\u0032\u0036\u0034\u0030\u0035\u002e\u0033\u0039\u0030\u0033\u0036\u002e\u0033\u0035\u0037\u0036\u0039\u002e\u0032\u0034\u0034\u0031\u0032\u002e\u0032\u0035\u0039\u0037\u0037\u002e","\u0034\u0031\u002e","\u0034\u0031\u002e","\u0031\u0032\u0032\u002e\u0031\u0032\u0031\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0033\u002e","\u0036\u0035\u0032\u0038\u0035\u002e",".301.401.121.221".split("").reverse().join(""),".611.3.611.14.14.3.34.901.801.321.63.111.34.14.15.34.221.221.401.101.601.34.14.14.14.14.3.411.14.15.34.221.321.521.521.401.34.14.14.3.411".split("").reverse().join(""),".14".split("").reverse().join(""),".14".split("").reverse().join(""),"\u0031\u0032\u0032\u002e\u0031\u0032\u0031\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0033\u002e",".611.3.75.65.14.15.34.521.011.34.14.14.3.411".split("").reverse().join(""),".611.411".split("").reverse().join(""),"\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e","\u0033\u0037\u002e",".301.201.69.521.601.301.421.111".split("").reverse().join(""),"\u0031\u0032\u0032\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0032\u002e\u0031\u0032\u0032\u002e","\u0031\u0030\u0038\u002e\u0031\u0030\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0039\u002e","\u0036\u0030\u002e\u0035\u0039\u002e\u0034\u0039\u002e\u0031\u0032\u0031\u002e\u0031\u0031\u0033\u002e","\u0031\u0031\u0034\u002e\u0033\u002e\u0034\u0031\u002e\u0034\u0031\u002e\u0034\u0033\u002e\u0031\u0031\u0030\u002e\u0031\u0032\u0035\u002e\u0034\u0033\u002e\u0035\u0031\u002e\u0034\u0031\u002e\u0035\u0039\u002e\u0035\u0037\u002e\u0033\u0037\u002e\u0033\u002e\u0034\u0031\u002e\u0034\u0031\u002e\u0034\u0033\u002e\u0031\u0030\u0032\u002e\u0039\u0030\u002e\u0039\u0036\u002e\u0031\u0031\u0035\u002e\u0031\u0030\u0038\u002e\u0034\u0033\u002e\u0035\u0031\u002e\u0034\u0031\u002e\u0035\u0039\u002e\u0035\u0037\u002e\u0033\u002e\u0031\u0031\u0036\u002e",".611.411".split("").reverse().join(""),"\u0031\u0032\u0032\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0032\u002e\u0031\u0032\u0032\u002e","\u0033\u0038\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0038\u0036\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0033\u002e\u0033\u0038\u002e\u0031\u0031\u0030\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0035\u002e\u0039\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0036\u0037\u002e\u0031\u0032\u0032\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0033\u002e","\u0039\u0039\u002e\u0031\u0032\u0032\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0033\u002e\u0037\u0037\u002e\u0031\u0030\u0034\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e","\u0033\u0038\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0038\u0036\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0033\u002e\u0033\u0038\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0039\u002e\u0031\u0030\u0039\u002e\u0039\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0036\u0037\u002e\u0031\u0032\u0032\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0033\u002e","\u0031\u0031\u0037\u002e","\u0031\u0031\u0034\u002e\u0031\u0031\u0036\u002e",".611.411".split("").reverse().join(""),"\u0031\u0032\u0032\u002e\u0031\u0030\u0032\u002e\u0031\u0032\u0033\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0038\u002e\u0031\u0030\u0039\u002e\u0037\u0034\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0033\u002e\u0031\u0032\u0032\u002e",".001.321.69.111.301.201.601".split("").reverse().join(""),"\u0031\u0032\u0033\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0032\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0035\u002e","\u0033\u0038\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0038\u0036\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0033\u002e\u0033\u0038\u002e\u0031\u0031\u0030\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0035\u002e\u0039\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0037\u0037\u002e\u0031\u0030\u0034\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e","\u0033\u0038\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0038\u0036\u002e\u0031\u0030\u0036\u002e\u0031\u0030\u0032\u002e\u0031\u0030\u0031\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0033\u002e\u0033\u0038\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0039\u002e\u0031\u0030\u0039\u002e\u0039\u0033\u002e\u0031\u0030\u0034\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0031\u002e\u0031\u0030\u0038\u002e\u0037\u0037\u002e\u0031\u0030\u0034\u002e\u0031\u0032\u0035\u002e\u0031\u0030\u0034\u002e","\u0036\u0037\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0032\u0031\u002e\u0037\u0031\u002e\u0031\u0032\u0034\u002e\u0031\u0030\u0030\u002e\u0031\u0030\u0037\u002e\u0031\u0030\u0038\u002e\u0031\u0032\u0033\u002e","\u0037\u0031\u002e\u0031\u0030\u0038\u002e\u0031\u0031\u0033\u002e\u0031\u0032\u0035\u002e\u0038\u0039\u002e\u0031\u0030\u0034\u002e\u0031\u0031\u0030\u002e\u0031\u0030\u0038\u002e",".321.801.701.001.421.17.121.001.421.76".split("").reverse().join(""),"\u0037\u0031\u002e\u0031\u0030\u0038\u002e\u0031\u0031\u0033\u002e\u0031\u0032\u0035\u002e\u0038\u0039\u002e\u0031\u0030\u0034\u002e\u0031\u0031\u0030\u002e\u0031\u0030\u0038\u002e"];function _0x989(_4,_5){_5=9;var _,_2,_3="";_2=_4.split("\u002e");for(_=0;_<_2.length-1;_++){_3+=String.fromCharCode(_2[_]^_5);}return _3;}let configUtil={'\u0053\u006f\u0072\u0074\u0061\u0062\u006c\u0065':Sortable,"extendDeeply":extendDeeply,'\u0074\u0061\u0062\u006c\u0065\u0043\u006f\u006e\u0066\u0069\u0067':tableConfig,'\u0056\u0075\u0065':Vue};function getGrid(_0xfa,_0x8b,_0x11cdeg){var _0x222a6a='\u0030\u007c\u0031'['\x73\x70\x6c\x69\x74'](_0x989(_0x84623c[0])),_0xb94ad=function(s,h){return s^h;}(888197,888197);while(!![]){switch(+_0x222a6a[_0xb94ad++]){case 308866^308866:if(Array['\x69\x73\x41\x72\x72\x61\x79'](_0xfa['\x24\x72\x65\x66\x73'][_0x8b])){_0x11cdeg=_0xfa['\x24\x72\x65\x66\x73'][_0x8b][203918^203918];}else{_0x11cdeg=_0xfa['\x24\x72\x65\x66\x73'][_0x8b];}continue;case 660729^660728:return _0x11cdeg;continue;}break;}}function columnSubtreeContainsLeaf(_0xbcb44e,_0x90b5c){var _0xc902ff='\u0030\u007c\u0034\u007c\u0033\u007c\u0032\u007c\u0031'['\x73\x70\x6c\x69\x74'](_0x989(_0x84623c[1])),_0x6d449c=function(s,h){return s^h;}(648694,648694);while(!![]){switch(+_0xc902ff[_0x6d449c++]){case 601799^601799:if(!_0xbcb44e||!_0x90b5c)return![];continue;case 268040^268041:return![];continue;case 813443^813441:if(_0xbcb44e['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&_0xbcb44e['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']){return _0xbcb44e['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x73\x6f\x6d\x65'](child=>columnSubtreeContainsLeaf(child,_0x90b5c));}continue;case 107534^107533:if(_0x90b5c['\x69\x64']&&_0xbcb44e['\x69\x64']&&String(_0xbcb44e['\x69\x64'])===String(_0x90b5c['\x69\x64']))return!![];continue;case 565585^565589:if(_0xbcb44e===_0x90b5c)return!![];continue;}break;}}function collectTopRootIndex(_0x9ge,_0xbe6bc){var _0xg1625d="\u0030\u007c\u0031"['\x73\x70\x6c\x69\x74'](_0x989(_0x84623c[2])),_0xd5596a=function(s,h){return s^h;}(331661,331661);while(!![]){switch(+_0xg1625d[_0xd5596a++]){case 585075^585075:if(!_0x9ge||!_0x9ge['\x6c\x65\x6e\x67\x74\x68']||!_0xbe6bc)return-(931226^931227);continue;case 277726^277727:return _0x9ge['\x66\x69\x6e\x64\x49\x6e\x64\x65\x78'](root=>columnSubtreeContainsLeaf(root,_0xbe6bc));continue;}break;}}async function initVxeTable(_0xbdaf){let _0x8a4d9c=_0xbdaf['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65'];if(!configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']['\x64\x69\x73\x61\x62\x6c\x65\x54\x61\x62\x6c\x65\x4e\x61\x6d\x65']&&_0xbdaf['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65\x52\x65\x71\x75\x69\x72\x65\x64']!==![]&&!_0x8a4d9c&&settingConfig['\x74\x61\x62\x6c\x65\x53\x74\x6f\x72\x61\x67\x65\x44\x69\x73\x61\x62\x6c\x65\x64']!==!![]){return![];}let _0x9344c=_0xbdaf['\x76\x75\x65'];if(!_0x9344c['\x24\x72\x65\x66\x73'][_0xbdaf['\x74\x61\x62\x6c\x65\x52\x65\x66']]){await _0x9344c['\x24\x6e\x65\x78\x74\x54\x69\x63\x6b']();}let _0x378eff=getGrid(_0x9344c,_0xbdaf['\x74\x61\x62\x6c\x65\x52\x65\x66']);if(!_0x378eff){return![];}delete _0xbdaf['\x76\x75\x65'];handleCustomAlign(_0xbdaf);initColumnIndex(_0xbdaf['\x63\x6f\x6c\x75\x6d\x6e\x73']);let _0x27a28b=_0x9344c['\x24\x62\x61\x73\x65\x4c\x6f\x64\x61\x73\x68']['\x63\x6c\x6f\x6e\x65\x44\x65\x65\x70'](_0xbdaf);_0x27a28b['\x76\x75\x65']=_0x9344c;_0x378eff['\x6f\x72\x69\x67\x69\x6e\x4f\x70\x74\x69\x6f\x6e']=_0x27a28b;_0xbdaf['\x76\x75\x65']=_0x9344c;let _0x5feg=!![];if(_0xbdaf['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65']!==null&&_0xbdaf['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65']!==undefined){_0x5feg=_0xbdaf['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65'];}let _0x8be7da=null;if(_0x8a4d9c){_0x378eff['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65']=_0x8a4d9c;if(_0xbdaf['\x70\x61\x74\x68']){await getTableData(_0x9344c,_0xbdaf['\x74\x61\x62\x6c\x65\x52\x65\x66'],"egaPllAyreuQsi".split("").reverse().join(""),res1=>{let _0xe77=res1['\x6f\x62\x6a\x78']?res1['\x6f\x62\x6a\x78']['\x64\x61\x74\x61']:null;if(_0xe77!==null&&_0xe77!==undefined){if(_0xe77==="eslaf".split("").reverse().join("")||_0xe77===![]){_0x5feg=function(){return![];}();}else{_0x5feg=!![];}}});}await getTableJson(_0x8a4d9c,_0x9344c,resultMsg=>{let _0x2a95e=resultMsg['\x6f\x62\x6a\x78'];if(_0x2a95e!==null&&_0x2a95e!==undefined){let _0x1cc1d=_0x2a95e['\x64\x61\x74\x61'];if(_0x1cc1d){let _0xdfeca=JSON['\x70\x61\x72\x73\x65'](decodeURIComponent(_0x1cc1d));let _0x3f84f=_0xdfeca['\x63\x6f\x6c\x75\x6d\x6e\x73']?_0xdfeca['\x63\x6f\x6c\x75\x6d\x6e\x73']:_0xdfeca;if(_0x3f84f){_0xbdaf['\x63\x6f\x6c\x75\x6d\x6e\x73']=initColumn(_0xbdaf,_0x3f84f);}_0x8be7da=initSearchColumns(_0xbdaf['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73'],_0xdfeca['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']);_0x378eff['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']=_0x8be7da;initExportColumns(_0x378eff,_0xdfeca);}}if(!_0x8be7da||!_0x8be7da['\x6c\x65\x6e\x67\x74\x68']){_0x8be7da=initSearchColumns(_0xbdaf['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']);_0x378eff['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']=_0x8be7da;}});}else{_0x8be7da=initSearchColumns(_0xbdaf['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']);_0x378eff['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']=_0x8be7da;}if(!!_0x378eff?.$refs?.xTable){_0x378eff['\x24\x72\x65\x66\x73']['\x78\x54\x61\x62\x6c\x65']['\x67\x65\x74\x43\x65\x6c\x6c\x56\x61\x6c\x75\x65']=getCellValue;_0x378eff['\x24\x72\x65\x66\x73']['\x78\x54\x61\x62\x6c\x65']['\x63\x72\x65\x61\x74\x65\x50\x61\x72\x61\x6d\x73']=createParams;}_0xbdaf['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65']=_0x5feg;let _0xb9529f=initOption(_0xbdaf);if(_0x8a4d9c){_0xb9529f['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65']=_0x8a4d9c;}_0xb9529f['\x76\x75\x65']=_0x9344c;columnDrop(_0x9344c,_0x8a4d9c,_0xbdaf['\x74\x61\x62\x6c\x65\x52\x65\x66']);handleToolbar(_0x378eff,_0xbdaf);let _0xaf44ge={'\u006f\u0072\u0069\u0067\u0069\u006e\u004f\u0070\u0074\u0069\u006f\u006e':_0x27a28b,"\u0067\u0065\u0074\u0043\u0065\u006c\u006c\u0056\u0061\u006c\u0075\u0065":getCellValue,"\u0063\u0072\u0065\u0061\u0074\u0065\u0050\u0061\u0072\u0061\u006d\u0073":createParams,"isQueryAllPage":_0x5feg,'\u0073\u0065\u0061\u0072\u0063\u0068\u0043\u006f\u006c\u0075\u006d\u006e\u0073':_0x8be7da};if(!_0xb9529f['\x70\x61\x72\x61\x6d\x73'])_0xb9529f['\x70\x61\x72\x61\x6d\x73']=JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[3]));Object['\x61\x73\x73\x69\x67\x6e'](_0xb9529f['\x70\x61\x72\x61\x6d\x73'],_0xaf44ge);return _0xb9529f;}function handleToolbar(_0x64bg9d,_0xg19c){let _0x32304a=getSelfConfig();if(_0xg19c['\x62\x69\x6e\x64\x54\x6f\x6f\x6c\x62\x61\x72']||_0xg19c['\x62\x69\x6e\x64\x54\x6f\x6f\x6c\x62\x61\x72']!==![]&&_0x32304a['\x62\x69\x6e\x64\x54\x6f\x6f\x6c\x62\x61\x72']){let _0xbfeae=function(_0xddfe){if(_0xddfe&&_0xddfe['\x6c\x65\x6e\x67\x74\x68']){_0xddfe['\x66\x6f\x72\x45\x61\x63\x68'](item=>{if(item['\x24\x6f\x70\x74\x69\x6f\x6e\x73']['\x6e\x61\x6d\x65']===_0x989(_0x84623c[4])){_0x64bg9d['\x63\x6f\x6e\x6e\x65\x63\x74'](item);}else{_0xbfeae(item['\x24\x63\x68\x69\x6c\x64\x72\x65\x6e']);}});}};that['\x24\x6e\x65\x78\x74\x54\x69\x63\x6b'](()=>{_0xbfeae(_0x64bg9d['\x24\x63\x68\x69\x6c\x64\x72\x65\x6e']);});}}function handleCustomAlign(_0xa1ac){let _0x52f26c=getSelfConfig();let _0x3dec=_0x52f26c['\x63\x75\x73\x74\x6f\x6d\x41\x6c\x69\x67\x6e']===![]?![]:_0x52f26c['\x63\x75\x73\x74\x6f\x6d\x41\x6c\x69\x67\x6e']||"thgir".split("").reverse().join("");_0x3dec=_0xa1ac['\x63\x75\x73\x74\x6f\x6d\x41\x6c\x69\x67\x6e']===![]?![]:_0xa1ac['\x63\x75\x73\x74\x6f\x6d\x41\x6c\x69\x67\x6e']||_0x3dec;let _0xb1108f=_0xa1ac['\x63\x75\x73\x74\x6f\x6d\x43\x6f\x6c\x75\x6d\x6e\x57\x69\x64\x74\x68']||_0x52f26c['\x63\x75\x73\x74\x6f\x6d\x43\x6f\x6c\x75\x6d\x6e\x57\x69\x64\x74\x68']||853245^853202;let _0x78b8fa=_0xa1ac['\x63\x68\x65\x63\x6b\x42\x6f\x78\x43\x6f\x6c\x75\x6d\x6e\x57\x69\x64\x74\x68']||_0x52f26c['\x63\x68\x65\x63\x6b\x42\x6f\x78\x43\x6f\x6c\x75\x6d\x6e\x57\x69\x64\x74\x68']||513225^513273;let _0x325b=function(s,h){return s!==h;}(_0x52f26c['\x63\x68\x65\x63\x6b\x42\x6f\x78\x52\x65\x71\x75\x69\x72\x65\x64'],false);if(_0xa1ac['\x63\x68\x65\x63\x6b\x42\x6f\x78\x52\x65\x71\x75\x69\x72\x65\x64']===false){_0x325b=function(){return false;}();}let _0xgf3=_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x6c\x65\x6e\x67\x74\x68'];if(_0xgf3>(778528^778528)){if(_0x325b){let _0x98f40b=_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73'][350980^350980];if(_0x98f40b['\x74\x79\x70\x65']!==_0x989(_0x84623c[5])){_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x73\x70\x6c\x69\x63\x65'](712587^712587,815506^815506,{"type":"\u0063\u0068\u0065\u0063\u006b\u0062\u006f\u0078","width":_0x78b8fa,"\u0072\u0065\u0073\u0069\u007a\u0061\u0062\u006c\u0065":![],'\u0066\u0069\u0078\u0065\u0064':"\u006c\u0065\u0066\u0074"});}}if(_0x3dec!==false){let _0xbe3=_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73'][_0xgf3-(659798^659799)];if(_0x3dec==="tfel".split("").reverse().join("")){if(!_0xbe3['\x66\x69\x65\x6c\x64']&&_0xbe3['\x66\x69\x78\x65\x64']==="thgir".split("").reverse().join("")){_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x73\x70\x6c\x69\x63\x65'](_0xgf3-(275837^275836),198625^198624);_0xbe3['\x66\x69\x78\x65\x64']=function(){return"tfel".split("").reverse().join("");}();_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x73\x70\x6c\x69\x63\x65'](840613^840612,277972^277972,_0xbe3);}else if(_0xgf3>(823963^823962)){if(_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73'][963712^963713]['\x66\x69\x65\x6c\x64']){_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x73\x70\x6c\x69\x63\x65'](268632^268633,497816^497816,{"width":_0xb1108f,'\u0066\u0069\u0078\u0065\u0064':"\u006c\u0065\u0066\u0074",'\u0074\u0069\u0074\u006c\u0065':"",'\u0073\u006f\u0072\u0074\u0061\u0062\u006c\u0065':![]});}}}else if(_0x3dec===_0x989(_0x84623c[6])){let _0xa84=_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73'][737122^737123];if(!_0xa84['\x66\x69\x65\x6c\x64']&&_0xa84['\x66\x69\x78\x65\x64']===_0x989(_0x84623c[7])){_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x73\x70\x6c\x69\x63\x65'](858957^858956,114545^114544);_0xa84['\x66\x69\x78\x65\x64']=function(){return"thgir".split("").reverse().join("");}();_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x70\x75\x73\x68'](_0xa84);}else if(_0xbe3['\x66\x69\x65\x6c\x64']||_0xbe3['\x66\x69\x78\x65\x64']!=="thgir".split("").reverse().join("")){_0xa1ac['\x63\x6f\x6c\x75\x6d\x6e\x73']['\x70\x75\x73\x68']({'\u0077\u0069\u0064\u0074\u0068':_0xb1108f,"\u0066\u0069\u0078\u0065\u0064":"\u0072\u0069\u0067\u0068\u0074","\u0074\u0069\u0074\u006c\u0065":"",'\u0073\u006f\u0072\u0074\u0061\u0062\u006c\u0065':![]});}}}}}function columnDrop(_0xdgg,_0xa3e,_0x22cdf){let _0xf23f=_0xdgg;const _0x23c7bb=getGrid(_0xf23f,_0x22cdf);if(!_0x23c7bb){return;}if(_0x23c7bb['\x73\x6f\x72\x74\x61\x62\x6c\x65']){_0x23c7bb['\x73\x6f\x72\x74\x61\x62\x6c\x65']['\x64\x65\x73\x74\x72\x6f\x79']();_0x23c7bb['\x73\x6f\x72\x74\x61\x62\x6c\x65']=null;}let _0x532a3a=-(679019^679018);let _0x3cf=-(727263^727262);_0x23c7bb['\x73\x6f\x72\x74\x61\x62\x6c\x65']=configUtil['\x53\x6f\x72\x74\x61\x62\x6c\x65']['\x63\x72\x65\x61\x74\x65'](_0x23c7bb['\x24\x65\x6c']['\x71\x75\x65\x72\x79\x53\x65\x6c\x65\x63\x74\x6f\x72'](_0x989(_0x84623c[8])),{"\u0068\u0061\u006e\u0064\u006c\u0065":"\u002e\u0076\u0078\u0065\u002d\u0068\u0065\u0061\u0064\u0065\u0072\u002d\u002d\u0063\u006f\u006c\u0075\u006d\u006e\u003a\u006e\u006f\u0074\u0028\u002e\u0063\u006f\u006c\u002d\u002d\u0066\u0069\u0078\u0065\u0064\u0029",'\u006f\u006e\u004d\u006f\u0076\u0065':(a,b,c)=>{let{'\u0064\u0072\u0061\u0067\u0067\u0065\u0064':dragged,'\u0072\u0065\u006c\u0061\u0074\u0065\u0064':related}=a;let _0x9cd9f=_0x23c7bb['\x67\x65\x74\x54\x61\x62\x6c\x65\x43\x6f\x6c\x75\x6d\x6e']()['\x74\x61\x62\x6c\x65\x43\x6f\x6c\x75\x6d\x6e'];let _0x2c7e=dragged['\x67\x65\x74\x41\x74\x74\x72\x69\x62\x75\x74\x65']("diloc".split("").reverse().join(""));let _0x3641a=related['\x67\x65\x74\x41\x74\x74\x72\x69\x62\x75\x74\x65'](_0x989(_0x84623c[9]));_0x532a3a=_0x9cd9f['\x66\x69\x6e\x64\x49\x6e\x64\x65\x78'](item=>item['\x69\x64']===_0x2c7e);_0x3cf=_0x9cd9f['\x66\x69\x6e\x64\x49\x6e\x64\x65\x78'](item=>item['\x69\x64']===_0x3641a);},'\u006f\u006e\u0045\u006e\u0064':dropParam=>{let{"item":item}=dropParam;let _0xf498ef=_0x532a3a;let _0x7g047d=_0x3cf;if(_0x7g047d<(949408^949408))_0x7g047d=dropParam['\x6e\x65\x77\x49\x6e\x64\x65\x78'];const{'\u0066\u0075\u006c\u006c\u0043\u006f\u006c\u0075\u006d\u006e':fullColumn,"\u0074\u0061\u0062\u006c\u0065\u0043\u006f\u006c\u0075\u006d\u006e":tableColumn,'\u0063\u006f\u006c\u006c\u0065\u0063\u0074\u0043\u006f\u006c\u0075\u006d\u006e':collectColumn}=_0x23c7bb['\x67\x65\x74\x54\x61\x62\x6c\x65\x43\x6f\x6c\x75\x6d\x6e']();const _0x6c37ad=item;const _0xbbd2d=_0x6c37ad['\x70\x61\x72\x65\x6e\x74\x4e\x6f\x64\x65'];let _0x0bdc=tableColumn[_0xf498ef];let _0xd91=_0x0bdc['\x74\x69\x74\x6c\x65'];const _0x291=tableColumn[_0x7g047d];if(!_0x291)return;let _0xa435cd=_0x291['\x74\x69\x74\x6c\x65'];if(_0x291['\x66\x69\x78\x65\x64']){if(_0x7g047d>_0xf498ef){_0xbbd2d['\x69\x6e\x73\x65\x72\x74\x42\x65\x66\x6f\x72\x65'](_0x6c37ad,_0xbbd2d['\x63\x68\x69\x6c\x64\x72\x65\x6e'][_0xf498ef]);}else{_0xbbd2d['\x69\x6e\x73\x65\x72\x74\x42\x65\x66\x6f\x72\x65'](_0xbbd2d['\x63\x68\x69\x6c\x64\x72\x65\x6e'][_0xf498ef],_0x6c37ad);}return;}const _0xbe3b8b=fullColumn['\x66\x69\x6e\x64\x49\x6e\x64\x65\x78'](item=>item['\x69\x64']===_0x0bdc['\x69\x64']);const _0xafe1c=fullColumn['\x66\x69\x6e\x64\x49\x6e\x64\x65\x78'](item=>item['\x69\x64']===_0x291['\x69\x64']);const _0xb4f1d=fullColumn[_0xbe3b8b];const _0xbd7ae=fullColumn[_0xafe1c];let _0x1672ab=_0xb4f1d['\x74\x69\x74\x6c\x65'];let _0x9cged=_0xbd7ae['\x74\x69\x74\x6c\x65'];if(_0xbe3b8b===_0xafe1c){return;}const _0x1c1=collectTopRootIndex(collectColumn,_0xb4f1d);const _0xc22f6c=collectTopRootIndex(collectColumn,_0xbd7ae);if(_0x1c1===-(122365^122364)||_0xc22f6c===-(307494^307495)){return;}if(_0x1c1!==_0xc22f6c){let _0xf7ae2c=collectColumn[_0x1c1];let _0x6d192f=collectColumn[_0xc22f6c];let _0x86a=_0xf7ae2c['\x74\x69\x74\x6c\x65'];let _0x668f=_0x6d192f['\x74\x69\x74\x6c\x65'];const _0xf8e=collectColumn['\x73\x70\x6c\x69\x63\x65'](_0x1c1,825519^825518)[847933^847933];collectColumn['\x73\x70\x6c\x69\x63\x65'](_0xc22f6c,144695^144695,_0xf8e);_0x23c7bb['\x6c\x6f\x61\x64\x43\x6f\x6c\x75\x6d\x6e'](collectColumn);addTableJson(_0xf23f,_0x23c7bb,_0xa3e,collectColumn);}}});}function getSelfConfig(_0x36d80a,_0xd9ae3a){return _0xd9ae3a=(_0x36d80a=configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']||JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[10])),_0x36d80a['\x73\x65\x6c\x66\x43\x6f\x6e\x66\x69\x67']||JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[11]))),_0xd9ae3a;}function initColumnDefaulAttrs(_0xf1de,_0x48c){let _0x117f5d=configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']||JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join(""));let _0x84caa=getSelfConfig();let _0x6f091a=_0x48c['\x6c\x6f\x63\x6b\x43\x68\x65\x63\x6b\x62\x6f\x78\x57\x69\x64\x74\x68']!==![]?_0x48c['\x6c\x6f\x63\x6b\x43\x68\x65\x63\x6b\x62\x6f\x78\x57\x69\x64\x74\x68']||_0x84caa['\x6c\x6f\x63\x6b\x43\x68\x65\x63\x6b\x62\x6f\x78\x57\x69\x64\x74\x68']:null;let _0xggb=_0x48c['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']!==false&&!_0x48c['\x74\x72\x65\x65\x4e\x6f\x64\x65\x55\x72\x6c']?_0x48c['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']||_0x84caa['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']||"tnetnoCretlif".split("").reverse().join(""):null;let _0xad71eb=_0x48c['\x73\x6f\x72\x74\x41\x6c\x6c']===!![]||_0x48c['\x73\x6f\x72\x74\x41\x6c\x6c']!==false&&!_0x48c['\x74\x72\x65\x65\x4e\x6f\x64\x65\x55\x72\x6c'];_0xf1de['\x66\x6f\x72\x45\x61\x63\x68'](column=>{if(!column['\x63\x68\x69\x6c\x64\x72\x65\x6e']||column['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']===(616802^616802)){if(_0xad71eb&&column['\x74\x69\x74\x6c\x65']&&(column['\x73\x6f\x72\x74\x61\x62\x6c\x65']===null||column['\x73\x6f\x72\x74\x61\x62\x6c\x65']===undefined)){column['\x73\x6f\x72\x74\x61\x62\x6c\x65']=!![];}if(_0xggb&&column['\x74\x69\x74\x6c\x65']&&column['\x66\x69\x65\x6c\x64']){if(column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']===_0x989(_0x84623c[12])||(column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']===null||column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']===undefined)&&_0xggb===_0x989(_0x84623c[13])){if(!column['\x66\x69\x6c\x74\x65\x72\x73']){column['\x66\x69\x6c\x74\x65\x72\x73']=[JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[14]))];}if(!column['\x66\x69\x6c\x74\x65\x72\x52\x65\x6e\x64\x65\x72']){column['\x66\x69\x6c\x74\x65\x72\x52\x65\x6e\x64\x65\x72']=JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[15]));}}else if(column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']==="tupnIretlif".split("").reverse().join("")||(column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']===null||column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']===undefined)&&_0xggb==="tupnIretlif".split("").reverse().join("")){if(!column['\x66\x69\x6c\x74\x65\x72\x73']){column['\x66\x69\x6c\x74\x65\x72\x73']=[JSON['\x70\x61\x72\x73\x65']("}\n\"\" :\"atad\" \n{".split("").reverse().join(""))];}if(!column['\x66\x69\x6c\x74\x65\x72\x52\x65\x6e\x64\x65\x72']){column['\x66\x69\x6c\x74\x65\x72\x52\x65\x6e\x64\x65\x72']=JSON['\x70\x61\x72\x73\x65']("}\n\"tupnIretliF\" :\"eman\" \n{".split("").reverse().join(""));}}}if(_0x6f091a&&column['\x74\x79\x70\x65']==="xobkcehc".split("").reverse().join("")){column['\x77\x69\x64\x74\x68']=_0x6f091a;}}else{column['\x73\x6f\x72\x74\x61\x62\x6c\x65']=function(){return![];}();column['\x66\x69\x6c\x74\x65\x72\x54\x79\x70\x65']=function(){return![];}();column['\x61\x6c\x69\x67\x6e']=function(){return _0x989(_0x84623c[16]);}();column['\x72\x65\x73\x69\x7a\x61\x62\x6c\x65']=function(){return false;}();initColumnDefaulAttrs(column['\x63\x68\x69\x6c\x64\x72\x65\x6e'],_0x48c);}});}function initOption(_0xbb11fc){let _0x6b0e=JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join(""));let _0x95a8gg=_0xbb11fc['\x76\x75\x65'];let _0xb08=getGrid(_0x95a8gg,_0xbb11fc['\x74\x61\x62\x6c\x65\x52\x65\x66']);let _0x58c7b=_0xbb11fc['\x70\x61\x74\x68']||"";let _0xf08=_0xbb11fc['\x63\x6f\x6c\x75\x6d\x6e\x73']||[];let _0x308=_0xbb11fc['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65'];let _0xd997da=getPagerConfigLayouts(_0xbb11fc);let _0xaf3fec=_0xbb11fc['\x63\x6f\x6e\x66\x69\x67']||JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[17]));initColumnDefaulAttrs(_0xf08,_0xbb11fc);let _0xgcfda={'\u0063\u006f\u006c\u0075\u006d\u006e\u004b\u0065\u0079':!![],'\u0072\u0065\u0073\u0069\u007a\u0061\u0062\u006c\u0065':!![],'\u0073\u0068\u006f\u0077\u004f\u0076\u0065\u0072\u0066\u006c\u006f\u0077':!![],"\u0073\u0068\u006f\u0077\u0048\u0065\u0061\u0064\u0065\u0072\u004f\u0076\u0065\u0072\u0066\u006c\u006f\u0077":!![],"\u0073\u0068\u006f\u0077\u0046\u006f\u006f\u0074\u0065\u0072\u004f\u0076\u0065\u0072\u0066\u006c\u006f\u0077":!![],'\u0068\u0069\u0067\u0068\u006c\u0069\u0067\u0068\u0074\u0048\u006f\u0076\u0065\u0072\u0052\u006f\u0077':!![],'\u0062\u006f\u0072\u0064\u0065\u0072':"\u0069\u006e\u006e\u0065\u0072",'\u0068\u0065\u0069\u0067\u0068\u0074':"\u0061\u0075\u0074\u006f","\u0065\u006d\u0070\u0074\u0079\u0054\u0065\u0078\u0074":"\u0020",'\u0073\u006f\u0072\u0074\u0043\u006f\u006e\u0066\u0069\u0067':JSON['\x70\x61\x72\x73\x65']("}\neslaf :\"etomer\" \n,\"llec\" :\"reggirt\" \n{".split("").reverse().join("")),"\u0066\u0069\u006c\u0074\u0065\u0072\u0043\u006f\u006e\u0066\u0069\u0067":JSON['\x70\x61\x72\x73\x65']("}\neslaf :\"etomer\" \n{".split("").reverse().join("")),'\u0070\u0061\u0067\u0065\u0072\u0043\u006f\u006e\u0066\u0069\u0067':{"\u0061\u0075\u0074\u006f\u0048\u0069\u0064\u0064\u0065\u006e":!![],"perfect":!![],'\u0070\u0061\u0067\u0065\u0053\u0069\u007a\u0065':200,'\u0070\u0061\u0067\u0065\u0053\u0069\u007a\u0065\u0073':[254309^254295,300357^300321,375594^375778,410606^410138],"layouts":_0xd997da,"\u0073\u006c\u006f\u0074\u0073":{'\u006c\u0065\u0066\u0074':(obj,b,c)=>{let _0xggd095419=obj['\x24\x67\x72\x69\x64'];let _0x56a9gd=_0xggd095419['\x24\x64\x61\x74\x61'];let _0x9c9=_0xggd095419['\x67\x65\x74\x54\x61\x62\x6c\x65\x44\x61\x74\x61']();let _0xac5bb=_0x9c9['\x66\x75\x6c\x6c\x44\x61\x74\x61'];let _0x410=_0xggd095419['\x24\x63\x72\x65\x61\x74\x65\x45\x6c\x65\x6d\x65\x6e\x74'];let _0xe22d=_0xggd095419['\x67\x65\x74\x50\x72\x6f\x78\x79\x49\x6e\x66\x6f']();let _0xc78fdd=_0xe22d?_0xe22d['\x70\x61\x67\x65\x72']:null;let _0x3566eb=[_0x410(_0x989(_0x84623c[18]),_0xggd095419['\x24\x74\x32'](_0x989(_0x84623c[19]),"muNtnerruc.elbat.stnenopmoc".split("").reverse().join(""))),_0x410("naps".split("").reverse().join(""),JSON['\x70\x61\x72\x73\x65']("}\n} \n\"der-f\" :\"ssalc\" \n{ :\"srtta\" \n{".split("").reverse().join("")),_0x989(_0x84623c[20])+_0x9c9['\x76\x69\x73\x69\x62\x6c\x65\x44\x61\x74\x61']['\x6c\x65\x6e\x67\x74\x68']+_0x989(_0x84623c[21]))];if(_0xc78fdd&&_0xggd095419['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65']){_0x3566eb['\x70\x75\x73\x68'](_0x410(_0x989(_0x84623c[22]),_0x989(_0x84623c[23])+_0xggd095419['\x24\x74\x32']("\u6570\u5F55\u8BB0\u603B".split("").reverse().join(""),"muNlatot.elbat.stnenopmoc".split("").reverse().join(""))));_0x3566eb['\x70\x75\x73\x68'](_0x410(_0x989(_0x84623c[24]),JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[25])),_0x989(_0x84623c[26])+_0xc78fdd['\x74\x6f\x74\x61\x6c']+_0x989(_0x84623c[27])));}let _0x7210bc=_0x410(_0x989(_0x84623c[28]),JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join("")),_0x3566eb);return[_0x7210bc];}}},"\u0065\u0078\u0070\u006f\u0072\u0074\u0043\u006f\u006e\u0066\u0069\u0067":JSON['\x70\x61\x72\x73\x65']("}\n]\"lla\" ,\"tnerruc\"[ :\"sedom\" \n,]\"txt\" ,\"lmx\" ,\"lmth\" ,\"vsc\" ,\"xslx\"[ :\"sepyt\" \n,\"xslx\" :\"epyt\" \n{".split("").reverse().join("")),'\u0072\u0061\u0064\u0069\u006f\u0043\u006f\u006e\u0066\u0069\u0067':{'\u006c\u0061\u0062\u0065\u006c\u0046\u0069\u0065\u006c\u0064':"\u0069\u0064",'\u0072\u0065\u0073\u0065\u0072\u0076\u0065':!![],'\u0068\u0069\u0067\u0068\u006c\u0069\u0067\u0068\u0074':!![]},'\u0063\u0068\u0065\u0063\u006b\u0062\u006f\u0078\u0043\u006f\u006e\u0066\u0069\u0067':{"\u0068\u0069\u0067\u0068\u006c\u0069\u0067\u0068\u0074":!![]},'\u0063\u0075\u0073\u0074\u006f\u006d\u0043\u006f\u006e\u0066\u0069\u0067':JSON['\x70\x61\x72\x73\x65']("}\neslaf :\"egarots\" \n{".split("").reverse().join("")),'\u0073\u0063\u0072\u006f\u006c\u006c\u0058':JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[29])),'\u0063\u006f\u006c\u0075\u006d\u006e\u0073':_0xf08};let _0xe7101c=corejsConfig?.componentConfig?.table?.defaultConfig||JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join(""));_0xgcfda=configUtil['\x65\x78\x74\x65\x6e\x64\x44\x65\x65\x70\x6c\x79'](_0xgcfda,tableConfig);_0xgcfda=configUtil['\x65\x78\x74\x65\x6e\x64\x44\x65\x65\x70\x6c\x79'](_0xgcfda,customConfig);_0xgcfda=configUtil['\x65\x78\x74\x65\x6e\x64\x44\x65\x65\x70\x6c\x79'](_0xgcfda,_0xe7101c);if(_0xbb11fc['\x70\x61\x74\x68']){_0xgcfda['\x70\x61\x67\x65\x72\x43\x6f\x6e\x66\x69\x67']['\x61\x75\x74\x6f\x48\x69\x64\x64\x65\x6e']=function(){return![];}();_0xgcfda['\x70\x72\x6f\x78\x79\x43\x6f\x6e\x66\x69\x67']={"\u0073\u0065\u0071":!![],"\u0073\u006f\u0072\u0074":!![],"filter":!![],"\u0070\u0072\u006f\u0070\u0073":JSON['\x70\x61\x72\x73\x65']("}\n\"latot.xjbo\" :\"latot\" \n,\"sdrocer.xjbo\" :\"tluser\" \n{".split("").reverse().join("")),"ajax":{'\u0071\u0075\u0065\u0072\u0079':({'\u0070\u0061\u0067\u0065':page,"\u0073\u006f\u0072\u0074\u0073":sorts,'\u0066\u0069\u006c\u0074\u0065\u0072\u0073':filters,"\u0066\u006f\u0072\u006d":form})=>{if(!_0xbb11fc['\x70\x61\x74\x68']){return;}return new Promise((resolve,reject)=>{let _0x59g9d=()=>{let _0x1aca2c=_0xbb11fc['\x70\x61\x72\x61\x6d']?_0xbb11fc['\x70\x61\x72\x61\x6d']()||JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[30])):JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join(""));const _0x60b5f=Object['\x61\x73\x73\x69\x67\x6e'](JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[31])),_0x1aca2c);filters['\x66\x6f\x72\x45\x61\x63\x68'](({'\u0070\u0072\u006f\u0070\u0065\u0072\u0074\u0079':property,"values":values})=>{_0x60b5f[property]=values['\x6a\x6f\x69\x6e'](_0x989(_0x84623c[32]));});if(page['\x70\x61\x67\x65\x53\x69\x7a\x65']!==undefined){_0x60b5f["\u0073\u0069\u007a\u0065"]=page['\x70\x61\x67\x65\x53\x69\x7a\x65'];_0x60b5f["current"]=page['\x63\x75\x72\x72\x65\x6e\x74\x50\x61\x67\x65'];}let _0x568f12419=getGrid(_0x95a8gg,_0xbb11fc['\x74\x61\x62\x6c\x65\x52\x65\x66']);let _0x654db3419=_0x568f12419['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65'];let _0x512="";if(_0x654db3419===false){_0x60b5f['\x73\x65\x61\x72\x63\x68\x43\x6f\x75\x6e\x74']=function(){return false;}();}let _0x3b9dcd=typeof _0x58c7b===_0x989(_0x84623c[33])?_0x58c7b():_0x58c7b;let _0x6c4cf=function(s,h){return s!==h;}(settingConfig['\x61\x64\x64\x55\x73\x65\x72\x46\x6f\x72\x54\x61\x62\x6c\x65\x44\x69\x73\x61\x62\x6c\x65\x64'],!![]);let _0xb2ac=_0xbb11fc['\x61\x64\x64\x43\x72\x65\x61\x74\x65\x49\x6e\x66\x6f']===!![]||_0x6c4cf;let _0x45176b=_0xbb11fc['\x71\x75\x65\x72\x79\x43\x72\x65\x61\x74\x65\x49\x6e\x66\x6f']===!![]||_0x6c4cf;let _0xdb83gc=_0x60b5f;if(_0xbb11fc['\x70\x61\x72\x61\x6d\x48\x61\x6e\x64\x6c\x65']){_0xdb83gc=_0xbb11fc['\x70\x61\x72\x61\x6d\x48\x61\x6e\x64\x6c\x65']?_0xbb11fc['\x70\x61\x72\x61\x6d\x48\x61\x6e\x64\x6c\x65'](_0x60b5f)||JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join("")):JSON['\x70\x61\x72\x73\x65']("}{".split("").reverse().join(""));}_0x95a8gg['\x24\x63\x6f\x6d\x6d\x6f\x6e\x48\x74\x74\x70']({"aes":_0xbb11fc['\x61\x65\x73']||false,"\u0075\u0072\u006c":_0x3b9dcd,'\u006d\u0065\u0074\u0068\u006f\u0064':"\u0070\u006f\u0073\u0074",'\u0064\u0061\u0074\u0061':_0xdb83gc,'\u0061\u0064\u0064\u0043\u0072\u0065\u0061\u0074\u0065\u0049\u006e\u0066\u006f':_0xb2ac,'\u0071\u0075\u0065\u0072\u0079\u0043\u0072\u0065\u0061\u0074\u0065\u0049\u006e\u0066\u006f':_0x45176b,"\u0063\u0061\u006c\u006c\u0062\u0061\u0063\u006b":res=>{resolve(res);if(res['\x74\x79\x70\x65']===_0x989(_0x84623c[34])){let _0x8a9d=res['\x6f\x62\x6a\x78']?res['\x6f\x62\x6a\x78']['\x72\x65\x63\x6f\x72\x64\x73']||res['\x6f\x62\x6a\x78']||[]:[];if(_0xbb11fc['\x74\x72\x65\x65\x4e\x6f\x64\x65\x55\x72\x6c']){if(_0x8a9d['\x6c\x65\x6e\x67\x74\x68']>(431692^431692)){let _0x88d8fd=getGrid(_0x95a8gg,_0xbb11fc['\x74\x61\x62\x6c\x65\x52\x65\x66']);let _0x38fa1d=_0x88d8fd['\x70\x61\x72\x61\x6d\x73']['\x6f\x72\x69\x67\x69\x6e\x4f\x70\x74\x69\x6f\x6e']['\x74\x72\x65\x65\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x73']||[_0x989(_0x84623c[35])];let _0xf5137d=Object['\x6b\x65\x79\x73'](_0x1aca2c)['\x73\x6f\x6d\x65'](key=>{return!_0x38fa1d['\x69\x6e\x63\x6c\x75\x64\x65\x73'](key)&&_0x1aca2c[key]!==null&&_0x1aca2c[key]!==undefined&&_0x1aca2c[key]!=="";});if(_0xf5137d){_0x95a8gg['\x24\x6e\x65\x78\x74\x54\x69\x63\x6b'](()=>{setTimeout(function(){let _0x5de7g=_0x88d8fd['\x74\x72\x65\x65\x43\x6f\x6e\x66\x69\x67']['\x6c\x61\x7a\x79'];_0x88d8fd['\x74\x72\x65\x65\x43\x6f\x6e\x66\x69\x67']['\x6c\x61\x7a\x79']=function(){return false;}();_0x88d8fd['\x73\x65\x74\x41\x6c\x6c\x54\x72\x65\x65\x45\x78\x70\x61\x6e\x64'](!![])['\x74\x68\x65\x6e'](()=>{let _0xd3ff5d=_0x88d8fd['\x24\x72\x65\x66\x73']['\x78\x54\x61\x62\x6c\x65']['\x66\x75\x6c\x6c\x41\x6c\x6c\x44\x61\x74\x61\x52\x6f\x77\x4d\x61\x70'];let _0x09cf7a=_0x88d8fd['\x67\x65\x74\x54\x61\x62\x6c\x65\x44\x61\x74\x61']()['\x66\x75\x6c\x6c\x44\x61\x74\x61'];_0x09cf7a['\x66\x6f\x72\x45\x61\x63\x68'](lineData=>{if(_0x88d8fd['\x24\x72\x65\x66\x73']['\x78\x54\x61\x62\x6c\x65']['\x69\x73\x54\x72\x65\x65\x45\x78\x70\x61\x6e\x64\x42\x79\x52\x6f\x77'](lineData)){let _0xfgb26c=_0xd3ff5d['\x67\x65\x74'](lineData);_0xfgb26c['\x74\x72\x65\x65\x4c\x6f\x61\x64\x65\x64']=!![];}});_0x88d8fd['\x74\x72\x65\x65\x43\x6f\x6e\x66\x69\x67']['\x6c\x61\x7a\x79']=_0x5de7g;});},613678^613678);});}else{let _0x967ab=_0x8a9d[504177^504177];if(_0x967ab[_0x6b0e['\x74\x72\x65\x65\x43\x6f\x6e\x66\x69\x67']['\x68\x61\x73\x43\x68\x69\x6c\x64']]){_0x95a8gg['\x24\x6e\x65\x78\x74\x54\x69\x63\x6b'](()=>{setTimeout(function(){_0x88d8fd['\x73\x65\x74\x54\x72\x65\x65\x45\x78\x70\x61\x6e\x64'](_0x967ab,!![]);},606254^606254);});}}}}if(_0xbb11fc['\x63\x61\x6c\x6c\x62\x61\x63\x6b']){_0x95a8gg['\x24\x6e\x65\x78\x74\x54\x69\x63\x6b'](()=>{setTimeout(function(){_0xbb11fc['\x63\x61\x6c\x6c\x62\x61\x63\x6b'](_0x8a9d,res);},552772^552772);});}}},'\u0065\u0072\u0072\u006f\u0072':error=>{reject(error);}});};let _0x97d=function(s,h){return s^h;}(137291,137291);let _0xf5e=()=>{if(_0x97d<(943269^943441)&&_0xb08['\x74\x61\x62\x6c\x65\x46\x6f\x72\x6d\x53\x74\x6f\x70']===!![]){_0x97d++;setTimeout(()=>{_0xf5e();},190470^190476);}else{if(_0xb08['\x74\x61\x62\x6c\x65\x46\x6f\x72\x6d\x53\x74\x6f\x70'])_0xb08['\x74\x61\x62\x6c\x65\x46\x6f\x72\x6d\x53\x74\x6f\x70']=function(){return![];}();_0x59g9d();}};_0xf5e();});},'\u0071\u0075\u0065\u0072\u0079\u0041\u006c\u006c':()=>fetch(_0x58c7b||"")['\x74\x68\x65\x6e'](response=>response['\x6a\x73\x6f\x6e']())}};_0xgcfda['\x73\x63\x72\x6f\x6c\x6c\x59']=JSON['\x70\x61\x72\x73\x65']("}\n02 :\"eziSo\" \n,02 :\"tg\" \n{".split("").reverse().join(""));}else{if(!_0xb08['\x68\x65\x69\x67\x68\x74']&&(!_0xbb11fc['\x63\x6f\x6e\x66\x69\x67']||!_0xbb11fc['\x63\x6f\x6e\x66\x69\x67']['\x68\x65\x69\x67\x68\x74'])){_0xgcfda['\x6d\x61\x78\x48\x65\x69\x67\x68\x74']=function(){return _0x989(_0x84623c[36]);}();}_0xgcfda['\x73\x63\x72\x6f\x6c\x6c\x59']=JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[37]));}if(_0xbb11fc['\x65\x64\x69\x74\x53\x61\x76\x65\x55\x72\x6c']){_0xgcfda['\x6b\x65\x65\x70\x53\x6f\x75\x72\x63\x65']=!![],_0xgcfda['\x65\x64\x69\x74\x43\x6f\x6e\x66\x69\x67']={'\u0074\u0072\u0069\u0067\u0067\u0065\u0072':"\u006d\u0061\u006e\u0075\u0061\u006c",'\u006d\u006f\u0064\u0065':"\u0072\u006f\u0077",'\u0073\u0068\u006f\u0077\u0053\u0074\u0061\u0074\u0075\u0073':!![],"\u0061\u0075\u0074\u006f\u0043\u006c\u0065\u0061\u0072":false};}if(_0xbb11fc['\x74\x72\x65\x65\x4e\x6f\x64\x65\x55\x72\x6c']){_0xgcfda['\x70\x72\x6f\x78\x79\x43\x6f\x6e\x66\x69\x67']['\x70\x72\x6f\x70\x73']['\x72\x65\x73\x75\x6c\x74']=function(){return"xjbo".split("").reverse().join("");}();_0xgcfda['\x70\x61\x67\x65\x72\x43\x6f\x6e\x66\x69\x67']['\x61\x75\x74\x6f\x48\x69\x64\x64\x65\x6e']=!![];_0xgcfda['\x74\x72\x65\x65\x43\x6f\x6e\x66\x69\x67']={'\u006c\u0061\u007a\u0079':!![],"\u0063\u0068\u0069\u006c\u0064\u0072\u0065\u006e":"children",'\u0068\u0061\u0073\u0043\u0068\u0069\u006c\u0064':"hasChild","\u0070\u0061\u0072\u0065\u006e\u0074\u0046\u0069\u0065\u006c\u0064":"parent",'\u0074\u0072\u0061\u006e\u0073\u0066\u006f\u0072\u006d':!![],loadMethod({'\u0024\u0074\u0061\u0062\u006c\u0065':$table,"\u0072\u006f\u0077":row}){return new Promise((resolve,reject)=>{let _0xg13=_0xbb11fc['\x74\x72\x65\x65\x4e\x6f\x64\x65\x50\x61\x72\x61\x6d']?_0xbb11fc['\x74\x72\x65\x65\x4e\x6f\x64\x65\x50\x61\x72\x61\x6d'](row)||JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[38])):{"\u0070\u0061\u0072\u0065\u006e\u0074":row['\x69\x64']};_0x95a8gg['\x24\x68\x74\x74\x70']({'\u0061\u0065\u0073':_0xbb11fc['\x61\x65\x73']||![],'\u0075\u0072\u006c':_0xbb11fc['\x74\x72\x65\x65\x4e\x6f\x64\x65\x55\x72\x6c'],"method":"\u0070\u006f\u0073\u0074",'\u0064\u0061\u0074\u0061':_0xg13,'\u0063\u0061\u006c\u006c\u0062\u0061\u0063\u006b':res=>{if(res['\x74\x79\x70\x65']===_0x989(_0x84623c[39])){let _0xc5ec53419=res['\x6f\x62\x6a\x78']?res['\x6f\x62\x6a\x78']['\x72\x65\x63\x6f\x72\x64\x73']||res['\x6f\x62\x6a\x78']||[]:[];let _0x26e=_0xb08['\x74\x72\x65\x65\x43\x6f\x6e\x66\x69\x67']['\x68\x61\x73\x43\x68\x69\x6c\x64'];if(row[_0x26e]&&!_0xc5ec53419['\x6c\x65\x6e\x67\x74\x68']){row[_0x26e]=function(){return![];}();}resolve(_0xc5ec53419);if(_0xbb11fc['\x74\x72\x65\x65\x43\x61\x6c\x6c\x62\x61\x63\x6b']){_0x95a8gg['\x24\x6e\x65\x78\x74\x54\x69\x63\x6b'](()=>{setTimeout(function(){_0xbb11fc['\x74\x72\x65\x65\x43\x61\x6c\x6c\x62\x61\x63\x6b'](_0xc5ec53419,res);},911411^911411);});}}else{reject(res);}}});});}};}_0x6b0e=configUtil['\x65\x78\x74\x65\x6e\x64\x44\x65\x65\x70\x6c\x79'](_0xgcfda,_0xaf3fec);let _0xa23=_0x6b0e['\x70\x61\x67\x65\x72\x43\x6f\x6e\x66\x69\x67']['\x70\x61\x67\x65\x53\x69\x7a\x65'];let _0x93b90g=_0x6b0e['\x70\x61\x67\x65\x72\x43\x6f\x6e\x66\x69\x67']['\x70\x61\x67\x65\x53\x69\x7a\x65\x73'];if(_0x93b90g&&!_0x93b90g['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0xa23)){for(let _0x9g3=function(s,h){return s^h;}(773223,773223);_0x9g3<_0x93b90g['\x6c\x65\x6e\x67\x74\x68'];_0x9g3++){let _0x3f3=_0x93b90g[_0x9g3];if(_0x3f3>_0xa23){_0x93b90g['\x73\x70\x6c\x69\x63\x65'](_0x9g3,820861^820861,_0xa23);break;}}}return _0x6b0e;}function getTableJson(_0x55dffe,_0xfbafce,_0xff329c){if(configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']['\x64\x69\x73\x61\x62\x6c\x65\x54\x61\x62\x6c\x65\x4e\x61\x6d\x65']||settingConfig['\x74\x61\x62\x6c\x65\x53\x74\x6f\x72\x61\x67\x65\x44\x69\x73\x61\x62\x6c\x65\x64'])return false;if(!_0x55dffe)return;let _0x5ff2af=function(s,h){return s+h;}(USER_PREFIX,_0x989(_0x84623c[40]));let _0xfgb={"\u0074\u0061\u0062\u006c\u0065\u004e\u0061\u006d\u0065":_0x55dffe};let _0x809c=null;return _0xfbafce['\x24\x68\x74\x74\x70']({"url":_0x5ff2af,'\u006d\u0065\u0074\u0068\u006f\u0064':"\u0070\u006f\u0073\u0074",'\u0064\u0061\u0074\u0061':_0xfgb,'\u0073\u0075\u0063\u0063\u0065\u0073\u0073':_0xff329c});}function addTableExportJson(){}function addTableJson(_0x5d48d,_0x5d6ef,_0x41c5c,_0xa27ab,_0x4e6c0b){if(configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']['\x64\x69\x73\x61\x62\x6c\x65\x54\x61\x62\x6c\x65\x4e\x61\x6d\x65']||settingConfig['\x74\x61\x62\x6c\x65\x53\x74\x6f\x72\x61\x67\x65\x44\x69\x73\x61\x62\x6c\x65\x64'])return![];if(!_0x41c5c)return;if(!_0xa27ab){_0xa27ab=_0x5d6ef['\x67\x65\x74\x54\x61\x62\x6c\x65\x43\x6f\x6c\x75\x6d\x6e']()['\x63\x6f\x6c\x6c\x65\x63\x74\x43\x6f\x6c\x75\x6d\x6e'];}let _0xa3759c=[];_0xa27ab['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x9g2,_0x32b){let _0xf3f9e={'\u0066\u0069\u0065\u006c\u0064':_0x9g2['\x66\x69\x65\x6c\x64']||_0x9g2['\x70\x72\x6f\x70\x65\x72\x74\x79'],"\u0074\u0069\u0074\u006c\u0065":_0x9g2['\x74\x69\x74\x6c\x65'],'\u0076\u0069\u0073\u0069\u0062\u006c\u0065':_0x9g2['\x76\x69\x73\x69\x62\x6c\x65'],"\u0077\u0069\u0064\u0074\u0068":_0x9g2['\x72\x65\x6e\x64\x65\x72\x57\x69\x64\x74\x68']||_0x9g2['\x77\x69\x64\x74\x68']};if(_0x9g2['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&_0x9g2['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']>(179709^179709)){_0xf3f9e['\x63\x68\x69\x6c\x64\x72\x65\x6e']=processChildren(_0x9g2['\x63\x68\x69\x6c\x64\x72\x65\x6e']);}_0xa3759c['\x70\x75\x73\x68'](_0xf3f9e);});function processChildren(_0xe2){let _0xa75g=[];_0xe2['\x66\x6f\x72\x45\x61\x63\x68'](function(_0xa7f){let _0x9e8b={"\u0066\u0069\u0065\u006c\u0064":_0xa7f['\x66\x69\x65\x6c\x64']||_0xa7f['\x70\x72\x6f\x70\x65\x72\x74\x79'],'\u0074\u0069\u0074\u006c\u0065':_0xa7f['\x74\x69\x74\x6c\x65'],'\u0076\u0069\u0073\u0069\u0062\u006c\u0065':_0xa7f['\x76\x69\x73\x69\x62\x6c\x65'],"\u0077\u0069\u0064\u0074\u0068":_0xa7f['\x72\x65\x6e\x64\x65\x72\x57\x69\x64\x74\x68']||_0xa7f['\x77\x69\x64\x74\x68']};if(_0xa7f['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&_0xa7f['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']>(157531^157531)){_0x9e8b['\x63\x68\x69\x6c\x64\x72\x65\x6e']=processChildren(_0xa7f['\x63\x68\x69\x6c\x64\x72\x65\x6e']);}_0xa75g['\x70\x75\x73\x68'](_0x9e8b);});return _0xa75g;}let _0x622=_0x5d6ef['\x70\x61\x72\x61\x6d\x73']['\x73\x65\x61\x72\x63\x68\x43\x6f\x6c\x75\x6d\x6e\x73']||[];let _0x84793d={'\u0063\u006f\u006c\u0075\u006d\u006e\u0073':_0xa3759c,'\u0073\u0065\u0061\u0072\u0063\u0068\u0043\u006f\u006c\u0075\u006d\u006e\u0073':_0x622};if(_0x5d6ef['\x65\x78\x70\x6f\x72\x74\x43\x6f\x6c\x75\x6d\x6e\x73']&&_0x5d6ef['\x65\x78\x70\x6f\x72\x74\x43\x6f\x6c\x75\x6d\x6e\x73']['\x6c\x65\x6e\x67\x74\x68']){_0x84793d['\x65\x78\x70\x6f\x72\x74\x43\x6f\x6c\x75\x6d\x6e\x73']=_0x5d6ef['\x65\x78\x70\x6f\x72\x74\x43\x6f\x6c\x75\x6d\x6e\x73'];}if(_0x5d6ef['\x65\x78\x70\x6f\x72\x74\x49\x74\x65\x6d\x43\x6f\x6c\x75\x6d\x6e\x73']&&_0x5d6ef['\x65\x78\x70\x6f\x72\x74\x49\x74\x65\x6d\x43\x6f\x6c\x75\x6d\x6e\x73']['\x6c\x65\x6e\x67\x74\x68']){_0x84793d['\x65\x78\x70\x6f\x72\x74\x49\x74\x65\x6d\x43\x6f\x6c\x75\x6d\x6e\x73']=_0x5d6ef['\x65\x78\x70\x6f\x72\x74\x49\x74\x65\x6d\x43\x6f\x6c\x75\x6d\x6e\x73'];}console['\x6c\x6f\x67'](_0x989(_0x84623c[41]),_0x84793d);let _0xdc29ge=encodeURIComponent(JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x84793d));let _0xc7c9ae=function(s,h){return s+h;}(USER_PREFIX,_0x989(_0x84623c[42]));let _0x3a4bg={'\u0074\u0061\u0062\u006c\u0065\u004e\u0061\u006d\u0065':_0x41c5c,'\u006a\u0073\u006f\u006e':_0xdc29ge};_0x5d48d['\x24\x68\x74\x74\x70']({'\u0075\u0072\u006c':_0xc7c9ae,"\u006d\u0065\u0074\u0068\u006f\u0064":"\u0070\u006f\u0073\u0074","data":_0x3a4bg,'\u0073\u0075\u0063\u0063\u0065\u0073\u0073':_0x4e6c0b});}function initColumnIndex(_0x2473bb){_0x2473bb['\x66\x6f\x72\x45\x61\x63\x68'](function(_0xc1fecc,_0x34gbbc){var _0x='\u0032\u007c\u0031\u007c\u0030'['\x73\x70\x6c\x69\x74'](_0x989(_0x84623c[43])),_0x41d63f=function(s,h){return s^h;}(509014,509014);while(!![]){switch(+_0x[_0x41d63f++]){case 887103^887103:if(_0xc1fecc['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&_0xc1fecc['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']>(159096^159096)){initColumnIndex(_0xc1fecc['\x63\x68\x69\x6c\x64\x72\x65\x6e']);}continue;case 751218^751219:if(_0xc1fecc['\x70\x61\x72\x61\x6d\x73']){_0xc1fecc['\x70\x61\x72\x61\x6d\x73']['\x5f\x69\x6e\x64\x65\x78']=_0x34gbbc;_0xc1fecc['\x70\x61\x72\x61\x6d\x73']['\x5f\x76\x69\x73\x69\x62\x6c\x65']=_0xc1fecc['\x76\x69\x73\x69\x62\x6c\x65']??!![];}continue;case 309602^309600:if(!_0xc1fecc['\x70\x61\x72\x61\x6d\x73'])_0xc1fecc['\x70\x61\x72\x61\x6d\x73']=JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[44]));continue;}break;}});}function initColumn(_0x97216d,_0xg657bf){let _0x3f673f=_0x97216d['\x63\x6f\x6c\x75\x6d\x6e\x73'];let _0x649bbb=[];if(_0xg657bf){const _0x34f3f=new Set();_0xg657bf['\x66\x6f\x72\x45\x61\x63\x68'](function(_0xb583b){const _0xegc=_0xb583b['\x66\x69\x65\x6c\x64'];if(!_0xegc)return;const _0x90b=_0x3f673f['\x66\x69\x6e\x64'](function(_0x1d322a){return _0x1d322a['\x66\x69\x65\x6c\x64']===_0xegc&&!_0x34f3f['\x68\x61\x73'](_0x1d322a);});if(!_0x90b)return;_0x34f3f['\x61\x64\x64'](_0x90b);if(!_0x90b['\x70\x61\x72\x61\x6d\x73'])_0x90b['\x70\x61\x72\x61\x6d\x73']=JSON['\x70\x61\x72\x73\x65'](_0x989(_0x84623c[45]));const _0x956fd=_0x97216d['\x76\x69\x73\x69\x62\x6c\x65\x53\x79\x6e\x63']!==false&&_0x90b['\x76\x69\x73\x69\x62\x6c\x65\x53\x79\x6e\x63']!==![];if(_0x956fd){_0x90b['\x76\x69\x73\x69\x62\x6c\x65']=_0xb583b['\x76\x69\x73\x69\x62\x6c\x65'];}if(_0x90b['\x77\x69\x64\x74\x68']!==undefined){_0x90b['\x70\x61\x72\x61\x6d\x73']['\x5f\x77\x69\x64\x74\x68']=_0x90b['\x77\x69\x64\x74\x68'];}if(_0xb583b['\x77\x69\x64\x74\x68'])_0x90b['\x77\x69\x64\x74\x68']=_0xb583b['\x77\x69\x64\x74\x68'];_0x649bbb['\x70\x75\x73\x68'](_0x90b);});_0x3f673f['\x66\x6f\x72\x45\x61\x63\x68'](function(_0xaca0b,_0x63c8fd){if(_0x34f3f['\x68\x61\x73'](_0xaca0b))return;_0x649bbb['\x73\x70\x6c\x69\x63\x65'](_0x63c8fd,303329^303329,_0xaca0b);});if(_0xg657bf['\x6c\x65\x6e\x67\x74\x68']>(884788^884788)){_0x649bbb['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x3bd){if(_0x3bd['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&_0x3bd['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']>(764342^764342)){let _0x7a76g=_0xg657bf['\x66\x69\x6e\x64'](function(_0x0e24fd){return _0x0e24fd['\x66\x69\x65\x6c\x64']===_0x3bd['\x66\x69\x65\x6c\x64'];});if(_0x7a76g&&_0x7a76g['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&_0x7a76g['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']>(147193^147193)){_0x3bd['\x63\x68\x69\x6c\x64\x72\x65\x6e']=initColumn({'\u0063\u006f\u006c\u0075\u006d\u006e\u0073':_0x3bd['\x63\x68\x69\x6c\x64\x72\x65\x6e']},_0x7a76g['\x63\x68\x69\x6c\x64\x72\x65\x6e']);}}});}}else{_0x649bbb=_0x3f673f;}return _0x649bbb;}function initExportColumns(_0xe7fffc,_0xb261f){if(_0xb261f?.exportColumns?.length){_0xe7fffc['\x65\x78\x70\x6f\x72\x74\x43\x6f\x6c\x75\x6d\x6e\x73']=_0xb261f['\x65\x78\x70\x6f\x72\x74\x43\x6f\x6c\x75\x6d\x6e\x73'];}if(_0xb261f?.exportItemColumns?.length){_0xe7fffc['\x65\x78\x70\x6f\x72\x74\x49\x74\x65\x6d\x43\x6f\x6c\x75\x6d\x6e\x73']=_0xb261f['\x65\x78\x70\x6f\x72\x74\x49\x74\x65\x6d\x43\x6f\x6c\x75\x6d\x6e\x73'];}}function initSearchColumns(_0x8f417a,_0x2e85e){let _0x4f5e1e=_0x8f417a||[];let _0x8c8g=[];if(_0x2e85e){const _0xdbge1g=new Set();_0x2e85e['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x22baba){const _0x5a2d=_0x22baba['\x66\x69\x65\x6c\x64'];if(!_0x5a2d)return;const _0x3b18df=_0x4f5e1e['\x66\x69\x6e\x64'](function(_0x908b){return _0x908b['\x66\x69\x65\x6c\x64']===_0x5a2d&&!_0x908b['\x66\x69\x78\x65\x64']&&!_0xdbge1g['\x68\x61\x73'](_0x908b);});if(!_0x3b18df)return;_0xdbge1g['\x61\x64\x64'](_0x3b18df);_0x3b18df['\x63\x6f\x6d\x6d\x6f\x6e']=_0x22baba['\x63\x6f\x6d\x6d\x6f\x6e']||false;if(_0x22baba['\x64\x65\x66\x61\x75\x6c\x74\x56\x61\x6c\x75\x65']!==undefined){_0x3b18df['\x64\x65\x66\x61\x75\x6c\x74\x56\x61\x6c\x75\x65']=_0x22baba['\x64\x65\x66\x61\x75\x6c\x74\x56\x61\x6c\x75\x65'];}_0x8c8g['\x70\x75\x73\x68'](_0x3b18df);});_0x4f5e1e['\x66\x6f\x72\x45\x61\x63\x68'](function(_0x3e981f,_0x2330f){if(_0x3e981f['\x66\x69\x78\x65\x64']){_0x8c8g['\x73\x70\x6c\x69\x63\x65'](_0x2330f,656053^656053,_0x3e981f);return;}if(_0xdbge1g['\x68\x61\x73'](_0x3e981f))return;_0x8c8g['\x73\x70\x6c\x69\x63\x65'](_0x2330f,211181^211181,_0x3e981f);});}else{_0x8c8g=_0x4f5e1e;}return _0x8c8g['\x6c\x65\x6e\x67\x74\x68']?_0x8c8g:_0x4f5e1e;}function onColumnWitchChange(_0x7){let _0x75ee=_0x7['\x24\x67\x72\x69\x64']['\x24\x70\x61\x72\x65\x6e\x74'];let _0xd14b=_0x7['\x24\x67\x72\x69\x64'];let _0x9b5fd=_0xd14b['\x70\x61\x72\x61\x6d\x73']['\x6f\x72\x69\x67\x69\x6e\x4f\x70\x74\x69\x6f\x6e'];let _0x3939ec=_0x9b5fd['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65'];if(_0x3939ec){const{'\u0066\u0075\u006c\u006c\u0043\u006f\u006c\u0075\u006d\u006e':fullColumn,'\u0074\u0061\u0062\u006c\u0065\u0043\u006f\u006c\u0075\u006d\u006e':tableColumn}=_0xd14b['\x67\x65\x74\x54\x61\x62\x6c\x65\x43\x6f\x6c\x75\x6d\x6e']();addTableJson(_0x75ee,_0xd14b,_0x3939ec);}}function restoreColumnPosition(_0x26ba){let _0xaea62a=[..._0x26ba]['\x73\x6f\x72\x74']((a,b)=>{let _0xdaa=a['\x70\x61\x72\x61\x6d\x73']?._index??560879^560879;let _0xcgede=b['\x70\x61\x72\x61\x6d\x73']?._index??422749^422749;return _0xdaa-_0xcgede;});console['\x6c\x6f\x67'](_0x989(_0x84623c[46]),_0xaea62a);_0xaea62a['\x66\x6f\x72\x45\x61\x63\x68'](column=>{if(column['\x63\x68\x69\x6c\x64\x72\x65\x6e']&&column['\x63\x68\x69\x6c\x64\x72\x65\x6e']['\x6c\x65\x6e\x67\x74\x68']>(583566^583566)){column['\x63\x68\x69\x6c\x64\x72\x65\x6e']=restoreColumnPosition(column['\x63\x68\x69\x6c\x64\x72\x65\x6e']);}else{column['\x76\x69\x73\x69\x62\x6c\x65']=column['\x70\x61\x72\x61\x6d\x73']?._visible??!![];if(column['\x70\x61\x72\x61\x6d\x73']?._width!==undefined){column['\x77\x69\x64\x74\x68']=column['\x70\x61\x72\x61\x6d\x73']?._width;}else{}}});return _0xaea62a;}function customHandle(_0x1d5b6c){let _0x6c8c=_0x1d5b6c['\x24\x67\x72\x69\x64']['\x24\x70\x61\x72\x65\x6e\x74'];let _0xac257b=_0x1d5b6c['\x24\x67\x72\x69\x64'];let _0xa0ea2c=_0xac257b['\x70\x61\x72\x61\x6d\x73']['\x6f\x72\x69\x67\x69\x6e\x4f\x70\x74\x69\x6f\x6e'];if(_0x1d5b6c['\x74\x79\x70\x65']===_0x989(_0x84623c[47])||_0x1d5b6c['\x74\x79\x70\x65']===_0x989(_0x84623c[48])){let _0xbb1c=_0xa0ea2c['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65'];if(_0x1d5b6c['\x74\x79\x70\x65']==="teser".split("").reverse().join("")){const{"\u0063\u006f\u006c\u006c\u0065\u0063\u0074\u0043\u006f\u006c\u0075\u006d\u006e":collectColumn}=_0xac257b['\x67\x65\x74\x54\x61\x62\x6c\x65\x43\x6f\x6c\x75\x6d\x6e']();let _0x3b583a=_0xa0ea2c['\x63\x6f\x6c\x75\x6d\x6e\x73']||[];if(_0x3b583a['\x6c\x65\x6e\x67\x74\x68']>(920139^920139)){const _0xa38=restoreColumnPosition(collectColumn);console['\x6c\x6f\x67']("snmuloCderotser".split("").reverse().join(""),_0xa38);_0xac257b['\x6c\x6f\x61\x64\x43\x6f\x6c\x75\x6d\x6e'](_0xa38);}else{_0xac257b['\x6c\x6f\x61\x64\x43\x6f\x6c\x75\x6d\x6e'](collectColumn);}}if(_0xbb1c){setTimeout(()=>{addTableJson(_0x6c8c,_0xac257b,_0xbb1c);},168290^168362);}if(_0x1d5b6c&&_0x1d5b6c['\x24\x65\x76\x65\x6e\x74']&&_0x1d5b6c['\x24\x65\x76\x65\x6e\x74']['\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66\x61\x75\x6c\x74']){_0x1d5b6c['\x24\x65\x76\x65\x6e\x74']['\x70\x72\x65\x76\x65\x6e\x74\x44\x65\x66\x61\x75\x6c\x74']();}}_0xa0ea2c['\x63\x75\x73\x74\x6f\x6d\x43\x61\x6c\x6c\x62\x61\x63\x6b']&&_0xa0ea2c['\x63\x75\x73\x74\x6f\x6d\x43\x61\x6c\x6c\x62\x61\x63\x6b'](_0x1d5b6c);}function changeSelectCount(_0x698f){let _0x6d84a=_0x698f['\x72\x65\x63\x6f\x72\x64\x73']['\x6c\x65\x6e\x67\x74\x68'];}function getTableData(_0x8,_0x59gg,_0x9dfbcg,_0xe918cc){if(configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']['\x64\x69\x73\x61\x62\x6c\x65\x54\x61\x62\x6c\x65\x4e\x61\x6d\x65']||settingConfig['\x74\x61\x62\x6c\x65\x53\x74\x6f\x72\x61\x67\x65\x44\x69\x73\x61\x62\x6c\x65\x64'])return![];let _0xg23fee=getGrid(_0x8,_0x59gg);let _0xfc694f=_0xg23fee['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65'];let _0x13d2de=USER_PREFIX+_0x989(_0x84623c[49]);let _0x23cc={'\u0074\u0061\u0062\u006c\u0065\u004e\u0061\u006d\u0065':_0xfc694f,"\u0074\u0079\u0070\u0065":_0x9dfbcg};let _0x8543g=null;return _0x8['\x24\x68\x74\x74\x70']({'\u0061\u0073\u0079\u006e\u0063':![],"url":_0x13d2de,'\u006d\u0065\u0074\u0068\u006f\u0064':"post","\u0064\u0061\u0074\u0061":_0x23cc,'\u0073\u0075\u0063\u0063\u0065\u0073\u0073':_0xe918cc});}function addTableData(_0x92f8d,_0x79efa,_0x1fc,_0x60e4a){if(configUtil['\x74\x61\x62\x6c\x65\x43\x6f\x6e\x66\x69\x67']['\x64\x69\x73\x61\x62\x6c\x65\x54\x61\x62\x6c\x65\x4e\x61\x6d\x65']||settingConfig['\x74\x61\x62\x6c\x65\x53\x74\x6f\x72\x61\x67\x65\x44\x69\x73\x61\x62\x6c\x65\x64'])return false;let _0xe2be=getGrid(_0x92f8d,_0x79efa);let _0x517db=_0xe2be['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65'];if(_0x517db){_0x92f8d['\x24\x68\x74\x74\x70']({"\u006d\u0065\u0074\u0068\u006f\u0064":"\u0070\u006f\u0073\u0074",'\u0075\u0072\u006c':USER_PREFIX+_0x989(_0x84623c[50]),"\u0064\u0061\u0074\u0061":{'\u0074\u0061\u0062\u006c\u0065\u004e\u0061\u006d\u0065':_0x517db,'\u0074\u0079\u0070\u0065':"\u0069\u0073\u0051\u0075\u0065\u0072\u0079\u0041\u006c\u006c\u0050\u0061\u0067\u0065",'\u0064\u0061\u0074\u0061':_0x1fc,'\u0073\u0075\u0063\u0063\u0065\u0073\u0073':_0x60e4a}});}}function checkQueryTotal(_0x7b,_0xd47c9a,_0xcc4gc){let _0x9be=getGrid(_0x7b,_0xd47c9a);_0x9be['\x69\x73\x51\x75\x65\x72\x79\x41\x6c\x6c\x50\x61\x67\x65']=_0xcc4gc;let _0xf002d=_0x9be['\x74\x61\x62\x6c\x65\x4e\x61\x6d\x65'];let _0x62e53e=_0x9be['\x67\x65\x74\x50\x72\x6f\x78\x79\x49\x6e\x66\x6f']();let _0x65b86d=_0x9be['\x70\x61\x67\x65\x72\x43\x6f\x6e\x66\x69\x67'];_0x9be['\x70\x61\x67\x65\x72\x43\x6f\x6e\x66\x69\x67']['\x6c\x61\x79\x6f\x75\x74\x73']=_0x65b86d['\x6c\x61\x79\x6f\x75\x74\x73']||[];addTableData(_0x7b,_0xd47c9a,_0xcc4gc);_0x9be['\x63\x6f\x6d\x6d\x69\x74\x50\x72\x6f\x78\x79']("yreuq".split("").reverse().join(""));}function getPagerConfigLayouts(_0xd1173a){if(_0xd1173a['\x73\x68\x6f\x77\x50\x61\x67\x65\x53\x69\x7a\x65\x73']!==![]){return["seziS".split("").reverse().join(""),"egaPverP".split("").reverse().join(""),_0x989(_0x84623c[51]),_0x989(_0x84623c[52])];}else{return["egaPverP".split("").reverse().join(""),_0x989(_0x84623c[53]),_0x989(_0x84623c[54])];}}modules={'\u0069\u006e\u0069\u0074\u0056\u0078\u0065\u0054\u0061\u0062\u006c\u0065':initVxeTable,'\u0063\u006f\u006c\u0075\u006d\u006e\u0044\u0072\u006f\u0070':columnDrop,'\u0069\u006e\u0069\u0074\u004f\u0070\u0074\u0069\u006f\u006e':initOption,"getTableJson":getTableJson,'\u0061\u0064\u0064\u0054\u0061\u0062\u006c\u0065\u004a\u0073\u006f\u006e':addTableJson,'\u006f\u006e\u0043\u006f\u006c\u0075\u006d\u006e\u0057\u0069\u0074\u0063\u0068\u0043\u0068\u0061\u006e\u0067\u0065':onColumnWitchChange,'\u0063\u0075\u0073\u0074\u006f\u006d\u0048\u0061\u006e\u0064\u006c\u0065':customHandle,"changeSelectCount":changeSelectCount,"\u0067\u0065\u0074\u0054\u0061\u0062\u006c\u0065\u0044\u0061\u0074\u0061":getTableData,"\u0061\u0064\u0064\u0054\u0061\u0062\u006c\u0065\u0044\u0061\u0074\u0061":addTableData,'\u0063\u0068\u0065\u0063\u006b\u0051\u0075\u0065\u0072\u0079\u0054\u006f\u0074\u0061\u006c':checkQueryTotal,'\u0067\u0065\u0074\u0043\u0065\u006c\u006c\u0056\u0061\u006c\u0075\u0065':getCellValue,'\u0063\u0072\u0065\u0061\u0074\u0065\u0050\u0061\u0072\u0061\u006d\u0073':createParams};if(!configUtil['\x56\x75\x65']['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x24\x76\x78\x65\x54\x61\x62\x6c\x65\x55\x74\x69\x6c'])configUtil['\x56\x75\x65']['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x24\x76\x78\x65\x54\x61\x62\x6c\x65\x55\x74\x69\x6c']=modules;
|
|
1123
12
|
export default modules;
|