cnhis-design-vue 3.1.12-beta.7 → 3.1.13-beta.1
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/es/packages/big-table/index.d.ts +4 -1
- package/es/packages/big-table/src/BigTable.vue.d.ts +22 -3
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +88 -63
- package/es/packages/big-table/src/bigTableState.d.ts +2 -0
- package/es/packages/big-table/src/bigTableState.js +1 -1
- package/es/packages/big-table/src/hooks/useFormat.js +1 -1
- package/es/packages/big-table/src/hooks/useNestTable.js +1 -1
- package/es/packages/big-table/src/utils.d.ts +5 -1
- package/es/packages/big-table/src/utils.js +100 -78
- package/es/packages/fabric-chart/src/hooks/useCenter.js +2 -8
- package/es/packages/fabric-chart/src/hooks/useCumputedPoint.js +1 -10
- package/es/packages/fabric-chart/src/hooks/useRight.js +3 -1
- package/es/packages/fabric-chart/src/hooks/useShadow.js +1 -1
- package/es/packages/fabric-chart/src/utils/index.js +35 -288
- package/es/packages/form-render/src/components/renderer/cascader.d.ts +7 -1
- package/es/packages/form-render/src/components/renderer/cascader.js +65 -53
- package/es/packages/form-render/src/components/renderer/select.d.ts +7 -5
- package/es/packages/form-render/src/components/renderer/select.js +35 -40
- package/es/packages/scale-view/src/hooks/scaleview-computed.js +7 -12
- package/es/packages/scale-view/src/hooks/scaleview-init.js +1 -6
- package/package.json +1 -1
|
@@ -2503,6 +2503,8 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2503
2503
|
editConfig: import("vxe-table").VxeTablePropTypes.EditConfig;
|
|
2504
2504
|
rowConfig: {
|
|
2505
2505
|
height: number;
|
|
2506
|
+
isHover: boolean;
|
|
2507
|
+
isCurrent: boolean;
|
|
2506
2508
|
};
|
|
2507
2509
|
};
|
|
2508
2510
|
state: {
|
|
@@ -2574,6 +2576,8 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2574
2576
|
};
|
|
2575
2577
|
rowConfig: {
|
|
2576
2578
|
height: number;
|
|
2579
|
+
isHover: boolean;
|
|
2580
|
+
isCurrent: boolean;
|
|
2577
2581
|
};
|
|
2578
2582
|
};
|
|
2579
2583
|
emit: (event: string, ...args: any[]) => void;
|
|
@@ -2859,7 +2863,6 @@ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2859
2863
|
userInfo: Record<string, any>;
|
|
2860
2864
|
sysImageSize: unknown[];
|
|
2861
2865
|
}>;
|
|
2862
|
-
handlePrimaryKey: import("vue").ComputedRef<string>;
|
|
2863
2866
|
handleSeqConfig: import("vue").ComputedRef<{
|
|
2864
2867
|
startIndex: number;
|
|
2865
2868
|
}>;
|
|
@@ -1115,6 +1115,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1115
1115
|
textColorTextDisabledWarning: string;
|
|
1116
1116
|
textColorGhostWarning: string;
|
|
1117
1117
|
textColorGhostHoverWarning: string;
|
|
1118
|
+
/**
|
|
1119
|
+
* 初始化props
|
|
1120
|
+
* @param {*} unionItem
|
|
1121
|
+
* @param {*} row
|
|
1122
|
+
* @param {*} column
|
|
1123
|
+
* @param {*} $rowIndex
|
|
1124
|
+
* @returns
|
|
1125
|
+
*/
|
|
1118
1126
|
textColorGhostPressedWarning: string;
|
|
1119
1127
|
textColorGhostFocusWarning: string;
|
|
1120
1128
|
textColorGhostDisabledWarning: string;
|
|
@@ -1184,7 +1192,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1184
1192
|
fontSizeSmall: string;
|
|
1185
1193
|
fontSizeMedium: string;
|
|
1186
1194
|
fontSizeLarge: string;
|
|
1187
|
-
opacityDisabled: string;
|
|
1195
|
+
opacityDisabled: string; /**
|
|
1196
|
+
* 避免每次点击都查询
|
|
1197
|
+
* 初始化查一次 行编辑 表单search用
|
|
1198
|
+
*/
|
|
1188
1199
|
colorOpacitySecondary: string;
|
|
1189
1200
|
colorOpacitySecondaryHover: string;
|
|
1190
1201
|
colorOpacitySecondaryPressed: string;
|
|
@@ -1207,7 +1218,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1207
1218
|
textColorHover: string;
|
|
1208
1219
|
textColorPressed: string;
|
|
1209
1220
|
textColorFocus: string;
|
|
1210
|
-
textColorDisabled: string;
|
|
1221
|
+
textColorDisabled: string; /**
|
|
1222
|
+
* tsx渲染表格
|
|
1223
|
+
*/
|
|
1211
1224
|
textColorText: string;
|
|
1212
1225
|
textColorTextHover: string;
|
|
1213
1226
|
textColorTextPressed: string;
|
|
@@ -2502,6 +2515,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2502
2515
|
editConfig: import("vxe-table").VxeTablePropTypes.EditConfig;
|
|
2503
2516
|
rowConfig: {
|
|
2504
2517
|
height: number;
|
|
2518
|
+
isHover: boolean;
|
|
2519
|
+
isCurrent: boolean;
|
|
2505
2520
|
};
|
|
2506
2521
|
};
|
|
2507
2522
|
state: {
|
|
@@ -2573,6 +2588,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2573
2588
|
};
|
|
2574
2589
|
rowConfig: {
|
|
2575
2590
|
height: number;
|
|
2591
|
+
isHover: boolean;
|
|
2592
|
+
isCurrent: boolean;
|
|
2576
2593
|
};
|
|
2577
2594
|
};
|
|
2578
2595
|
emit: (event: string, ...args: any[]) => void;
|
|
@@ -2858,7 +2875,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2858
2875
|
userInfo: Record<string, any>;
|
|
2859
2876
|
sysImageSize: unknown[];
|
|
2860
2877
|
}>;
|
|
2861
|
-
handlePrimaryKey: import("vue").ComputedRef<string>;
|
|
2862
2878
|
handleSeqConfig: import("vue").ComputedRef<{
|
|
2863
2879
|
startIndex: number;
|
|
2864
2880
|
}>;
|
|
@@ -4037,6 +4053,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4037
4053
|
readonly color: StringConstructor;
|
|
4038
4054
|
readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
4039
4055
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
4056
|
+
/**
|
|
4057
|
+
* computed
|
|
4058
|
+
*/
|
|
4040
4059
|
color: string;
|
|
4041
4060
|
opacity1Depth: string;
|
|
4042
4061
|
opacity2Depth: string;
|
|
@@ -16,7 +16,7 @@ import SvgIcon from '../../../src/components/SvgIcon';
|
|
|
16
16
|
import { useMessage, NIcon, NTooltip, NCheckbox, NCheckboxGroup, NSpace, NButton, NPopconfirm, NProgress, NDropdown, NSwitch, NPopover } from 'naive-ui';
|
|
17
17
|
import CGrid from '../../../packages/grid';
|
|
18
18
|
import vexutils from '../../../src/utils/vexutils';
|
|
19
|
-
import { handleTableHeight, setTableConfig, handleGroupColums, checkMethod, setTreeGroupTitle, handleName, generateEditRender, handlerInitSearchItem, getEvaluate, getMapVal, getCandidateComponents, getageShowType, isLink, showFilter, reScrollFilterWrap, hideFilterWrap, mergeConObjFn, setDefaultFormData, handleImgArr, handleImgSrc, modalDetailImage, handleQrCodeContent, getInlineEditBtn, isCopy, setVisibleCheckAllWrap, setFilterStatus, handleTableImageSize, visibleMethod, getRowStyle, getFooterGroup, flattenRow, intersectRow, removeCheckedDisabledRows } from './utils.js';
|
|
19
|
+
import { handleTableHeight, setTableConfig, handleGroupColums, treeToList, checkMethod, setTreeGroupTitle, handleName, generateEditRender, handlerInitSearchItem, getEvaluate, getMapVal, getCandidateComponents, getageShowType, isLink, showFilter, reScrollFilterWrap, hideFilterWrap, mergeConObjFn, setDefaultFormData, handleImgArr, handleImgSrc, modalDetailImage, handleQrCodeContent, getInlineEditBtn, isCopy, setVisibleCheckAllWrap, setFilterStatus, handleTableImageSize, visibleMethod, getRowStyle, getFooterGroup, flattenRow, intersectRow, removeCheckedDisabledRows } from './utils.js';
|
|
20
20
|
import './components/input-button.js';
|
|
21
21
|
import './components/separate.js';
|
|
22
22
|
import xb_big from '../../../src/assets/img/xb_big';
|
|
@@ -136,9 +136,6 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
136
136
|
sysImageSize: props.sysImageSize || {}
|
|
137
137
|
};
|
|
138
138
|
});
|
|
139
|
-
const handlePrimaryKey = computed(() => {
|
|
140
|
-
return state.isTree > 0 ? props.primaryKey || "theUniqueKey" : "theUniqueKey";
|
|
141
|
-
});
|
|
142
139
|
const handleSeqConfig = computed(() => {
|
|
143
140
|
if (props.isNestTable)
|
|
144
141
|
return {
|
|
@@ -156,25 +153,33 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
156
153
|
});
|
|
157
154
|
const treeConfig = computed(() => {
|
|
158
155
|
let result = null;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
156
|
+
let {
|
|
157
|
+
isTransform
|
|
158
|
+
} = props.tableParams;
|
|
159
|
+
let statusNumber = Number(state.isTree);
|
|
160
|
+
if ([1, 3].includes(statusNumber)) {
|
|
161
|
+
result = {
|
|
162
|
+
children: "childrenList",
|
|
163
|
+
accordion: state.openOnly > 0,
|
|
164
|
+
reserve: true
|
|
165
|
+
};
|
|
166
|
+
if (isTransform) {
|
|
167
|
+
Reflect.deleteProperty(result, "children");
|
|
168
|
+
Object.assign(result, {
|
|
169
|
+
rowField: "qianduan_id",
|
|
170
|
+
parentField: "qianduan_parent_id",
|
|
171
|
+
transform: true
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
} else if (statusNumber == 2) {
|
|
175
|
+
result = {
|
|
176
|
+
lazy: true,
|
|
177
|
+
reserve: true,
|
|
178
|
+
children: "childrenList",
|
|
179
|
+
hasChild: "hasChildren",
|
|
180
|
+
loadMethod: loadChildrenMethod,
|
|
181
|
+
accordion: state.openOnly > 0
|
|
182
|
+
};
|
|
178
183
|
}
|
|
179
184
|
return result;
|
|
180
185
|
});
|
|
@@ -253,7 +258,12 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
253
258
|
};
|
|
254
259
|
const loadData = async (data) => {
|
|
255
260
|
state.isShowEmpty = !(data == null ? void 0 : data.length);
|
|
256
|
-
|
|
261
|
+
let list = JSON.parse(JSON.stringify(data));
|
|
262
|
+
let {
|
|
263
|
+
isTransform
|
|
264
|
+
} = props.tableParams;
|
|
265
|
+
if (isTransform && [1, 3].includes(Number(state.isTree)))
|
|
266
|
+
list = treeToList(list);
|
|
257
267
|
let table = xGrid.value;
|
|
258
268
|
if (!table)
|
|
259
269
|
return;
|
|
@@ -340,6 +350,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
340
350
|
state.rowConfig.height = 48;
|
|
341
351
|
}
|
|
342
352
|
state.rowConfig.height = Object.assign(state.rowConfig.height, rowConfig);
|
|
353
|
+
state.rowConfig.keyField = handleRowId.value;
|
|
343
354
|
if (selectType) {
|
|
344
355
|
isBatchSelect = 1;
|
|
345
356
|
}
|
|
@@ -433,6 +444,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
433
444
|
fixed,
|
|
434
445
|
sortable,
|
|
435
446
|
headerClassName: "mycolumn",
|
|
447
|
+
resizable: true,
|
|
436
448
|
showOverflow: "title",
|
|
437
449
|
treeNode,
|
|
438
450
|
type,
|
|
@@ -535,13 +547,17 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
535
547
|
return createVNode(NPopconfirm, {
|
|
536
548
|
"onPositiveClick": () => deleteRow(row, col, index)
|
|
537
549
|
}, {
|
|
538
|
-
trigger
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
550
|
+
trigger() {
|
|
551
|
+
return createVNode(NButton, {
|
|
552
|
+
"color": btn.settingObj[0].color || "#999",
|
|
553
|
+
"text": true
|
|
554
|
+
}, {
|
|
555
|
+
default: () => [btn.name]
|
|
556
|
+
});
|
|
557
|
+
},
|
|
558
|
+
default() {
|
|
559
|
+
return "\u662F\u5426\u786E\u8BA4\u5220\u9664\uFF1F";
|
|
560
|
+
}
|
|
545
561
|
});
|
|
546
562
|
} else {
|
|
547
563
|
return null;
|
|
@@ -600,10 +616,14 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
600
616
|
}
|
|
601
617
|
if (attrType === "COUNTDOWN") {
|
|
602
618
|
return createVNode(NTooltip, null, {
|
|
603
|
-
trigger
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
619
|
+
trigger() {
|
|
620
|
+
return createVNode("span", {
|
|
621
|
+
"innerHTML": row[own.columnName + "_countdown"] || ""
|
|
622
|
+
}, null);
|
|
623
|
+
},
|
|
624
|
+
default() {
|
|
625
|
+
return row[own.columnName + "_countdownTip"];
|
|
626
|
+
}
|
|
607
627
|
});
|
|
608
628
|
}
|
|
609
629
|
if (attrType === "DURATION") {
|
|
@@ -1087,6 +1107,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
1087
1107
|
_rowIndex,
|
|
1088
1108
|
_columnIndex
|
|
1089
1109
|
}) => {
|
|
1110
|
+
var _a;
|
|
1090
1111
|
if (state.isTree != 3) {
|
|
1091
1112
|
return {
|
|
1092
1113
|
rowspan: 1,
|
|
@@ -1098,22 +1119,26 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
1098
1119
|
return !!column2.property;
|
|
1099
1120
|
});
|
|
1100
1121
|
let colspan = xTree.getTableColumn().tableColumn.length - fristKeyIndex;
|
|
1101
|
-
if (
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1122
|
+
if (xTree) {
|
|
1123
|
+
const isOldVxeTree = row.childrenList && row.childrenList.length;
|
|
1124
|
+
const isTransformVxeTree = ((_a = props.tableParams) == null ? void 0 : _a.isTransform) && !row.qianduan_parent_id;
|
|
1125
|
+
if (isOldVxeTree || isTransformVxeTree) {
|
|
1126
|
+
if (column.treeNode) {
|
|
1127
|
+
return {
|
|
1128
|
+
rowspan: 1,
|
|
1129
|
+
colspan
|
|
1130
|
+
};
|
|
1131
|
+
} else if (!column.property) {
|
|
1132
|
+
return {
|
|
1133
|
+
rowspan: 1,
|
|
1134
|
+
colspan: 1
|
|
1135
|
+
};
|
|
1136
|
+
} else {
|
|
1137
|
+
return {
|
|
1138
|
+
rowspan: 0,
|
|
1139
|
+
colspan: 0
|
|
1140
|
+
};
|
|
1141
|
+
}
|
|
1117
1142
|
}
|
|
1118
1143
|
}
|
|
1119
1144
|
};
|
|
@@ -1530,11 +1555,15 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
1530
1555
|
return createVNode(NPopconfirm, {
|
|
1531
1556
|
"onPositiveClick": () => confirmScanMulti(params)
|
|
1532
1557
|
}, {
|
|
1533
|
-
trigger
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1558
|
+
trigger() {
|
|
1559
|
+
return createVNode(SvgIcon, {
|
|
1560
|
+
"class": "scan-multi-delete",
|
|
1561
|
+
"iconClass": "shanchu"
|
|
1562
|
+
}, null);
|
|
1563
|
+
},
|
|
1564
|
+
default() {
|
|
1565
|
+
return "\u662F\u5426\u786E\u8BA4\u5220\u9664\uFF1F";
|
|
1566
|
+
}
|
|
1538
1567
|
});
|
|
1539
1568
|
};
|
|
1540
1569
|
const showEditForm = (row, column, $rowIndex) => {
|
|
@@ -1817,7 +1846,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
1817
1846
|
recordClickBtnInfo(row, index);
|
|
1818
1847
|
emit("setNestTableClick", props.isNestTable);
|
|
1819
1848
|
emit("setCurRowIndex", index);
|
|
1820
|
-
emit("clickBtn", row, btn, row[
|
|
1849
|
+
emit("clickBtn", row, btn, row[handleRowId.value], index);
|
|
1821
1850
|
};
|
|
1822
1851
|
const getBtnIcon = (btn, mr = "8px") => {
|
|
1823
1852
|
let icon;
|
|
@@ -1933,7 +1962,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
1933
1962
|
vxeTable.setCurrentRow(row);
|
|
1934
1963
|
emit("setNestTableClick", props.isNestTable);
|
|
1935
1964
|
emit("setCurRowIndex", index);
|
|
1936
|
-
emit("linkDetail", row, col, row[
|
|
1965
|
+
emit("linkDetail", row, col, row[handleRowId.value], null, false, index);
|
|
1937
1966
|
};
|
|
1938
1967
|
const hanldeCopyContent = (e, value) => {
|
|
1939
1968
|
e.preventDefault();
|
|
@@ -2219,17 +2248,13 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
2219
2248
|
border: "",
|
|
2220
2249
|
"show-overflow": "",
|
|
2221
2250
|
"show-header-overflow": "",
|
|
2222
|
-
"highlight-hover-row": "",
|
|
2223
|
-
"highlight-current-row": "",
|
|
2224
2251
|
"show-footer-overflow": "title",
|
|
2225
2252
|
"keep-source": "",
|
|
2226
|
-
resizable: "",
|
|
2227
2253
|
"auto-resize": "",
|
|
2228
2254
|
height: props.height ? "auto" : void 0
|
|
2229
2255
|
}, _ctx.$attrs, {
|
|
2230
2256
|
"seq-config": unref(handleSeqConfig),
|
|
2231
2257
|
"tree-config": unref(treeConfig),
|
|
2232
|
-
"row-id": unref(handleRowId),
|
|
2233
2258
|
"row-class-name": getRowClassName,
|
|
2234
2259
|
"cell-class-name": _ctx.columnConfig.cellClassName || null,
|
|
2235
2260
|
"row-config": state.rowConfig,
|
|
@@ -2340,7 +2365,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
2340
2365
|
}
|
|
2341
2366
|
})]),
|
|
2342
2367
|
_: 3
|
|
2343
|
-
}, 16, ["height", "seq-config", "tree-config", "
|
|
2368
|
+
}, 16, ["height", "seq-config", "tree-config", "cell-class-name", "row-config", "show-footer", "checkbox-config", "row-style", "edit-config", "expand-config", "keyboard-config", "edit-rules", "menu-config", "onScroll", "onKeydown"]), createCommentVNode(" `${refreshRow}\u6761\u66F4\u65B0` "), withDirectives(createElementVNode("div", {
|
|
2344
2369
|
class: "refresh",
|
|
2345
2370
|
onClick: hanldeClickRefresh
|
|
2346
2371
|
}, [createVNode(unref(NIcon), {
|
|
@@ -24,7 +24,7 @@ const useFormat = (state) => {
|
|
|
24
24
|
} = data;
|
|
25
25
|
const { nobutton = false } = ((_a = state.options) == null ? void 0 : _a.config) || {};
|
|
26
26
|
return tableList.map((_item, index) => {
|
|
27
|
-
|
|
27
|
+
const item = vexutils.clone(_item, true);
|
|
28
28
|
item.origin = vexutils.clone(_item, true);
|
|
29
29
|
if (isNestTabel) {
|
|
30
30
|
Object.assign(item, {
|
|
@@ -6,7 +6,7 @@ const useNestTable = (props, state, emit) => {
|
|
|
6
6
|
return props.showNestTable || props.isNestTable;
|
|
7
7
|
});
|
|
8
8
|
const isExpandTable = computed(() => {
|
|
9
|
-
|
|
9
|
+
const { isBatchSelect } = props.columnConfig || {};
|
|
10
10
|
return !props.isNestTable && isBatchSelect == 1;
|
|
11
11
|
});
|
|
12
12
|
const handleRowId = computed(() => {
|
|
@@ -16,6 +16,10 @@ export declare const checkMethod: ({ row }: {
|
|
|
16
16
|
row: any;
|
|
17
17
|
}) => boolean;
|
|
18
18
|
export declare const visibleMethod: ({ row }: any) => boolean;
|
|
19
|
+
/**
|
|
20
|
+
* 单选行数据 树形结构转列表
|
|
21
|
+
*/
|
|
22
|
+
export declare const treeToList: (treeData: any[]) => any[];
|
|
19
23
|
/**
|
|
20
24
|
* 单选行数据 树结构 扁平化处理
|
|
21
25
|
*/
|
|
@@ -29,7 +33,7 @@ export declare const setFilterStatus: (state: any, props: any) => false | undefi
|
|
|
29
33
|
export declare const getRowStyle: ({ row }: any) => string | null;
|
|
30
34
|
export declare const handleTableHeight: (state: any, props: any) => any;
|
|
31
35
|
export declare const handleName: (item: any, key?: string) => any;
|
|
32
|
-
export declare const handleImgArr: (imgs: any, type: any, imgs2imgArr:
|
|
36
|
+
export declare const handleImgArr: (imgs: any, type: any, imgs2imgArr: (imgs: any) => any[]) => any[];
|
|
33
37
|
export declare const handleImgSrc: (curSrc: any, imageArr: any, type: any) => any;
|
|
34
38
|
export declare const modalDetailImage: (imageArr: any, type: any, defaultHeight: any) => any;
|
|
35
39
|
/** 选人组件数据解析 */
|