@gct-paas/word 0.1.17 → 0.1.19
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/dist/base/calendar/src/calendar.vue.d.ts +6 -4
- package/dist/base/calendar/src/time.vue.d.ts +1 -0
- package/dist/core/command/commands/Backspace.d.ts +2 -0
- package/dist/core/command/commands/MergeCells.d.ts +7 -1
- package/dist/core/command/commands/UnmergeCells.d.ts +7 -1
- package/dist/core/command/types.d.ts +2 -0
- package/dist/core/data/DataManager.d.ts +9 -0
- package/dist/core/event/types.d.ts +1 -1
- package/dist/core/index.d.ts +2 -5
- package/dist/core/interaction/InteractionController.d.ts +4 -0
- package/dist/core/interaction/types.d.ts +3 -0
- package/dist/core/interaction/useInteraction.d.ts +2 -0
- package/dist/core/layout/handlers/ImageHandler.d.ts +1 -0
- package/dist/core/layout/handlers/TextHandler.d.ts +5 -0
- package/dist/core/layout/handlers/base/BaseHandler.d.ts +5 -0
- package/dist/core/layout/handlers/fields/BaseHandler.d.ts +6 -1
- package/dist/core/model/DocModel.d.ts +1 -0
- package/dist/core/model/base/ModelGroup.d.ts +6 -0
- package/dist/core/model/document/Wtr.d.ts +2 -2
- package/dist/core/model/document/WtrPr.d.ts +13 -1
- package/dist/core/model/footers/Wfooter.d.ts +6 -0
- package/dist/core/model/headers/Wheader.d.ts +6 -0
- package/dist/core/model/helpers.d.ts +15 -0
- package/dist/core/model/images/Wimages.d.ts +12 -0
- package/dist/core/utils/expand.d.ts +3 -1
- package/dist/core/view/TableCell.d.ts +2 -0
- package/dist/core/view/TableRow.d.ts +3 -0
- package/dist/core/view/base/LayoutNode.d.ts +3 -0
- package/dist/core/widget/widget-state.d.ts +14 -5
- package/dist/index.es.js +2032 -1195
- package/dist/runtime/canvas/doc-layout.vue.d.ts +2 -1
- package/dist/runtime/canvas/table/utils/index.d.ts +1 -0
- package/dist/runtime/canvas/table/utils/useTableSelection.d.ts +2 -0
- package/dist/runtime/designer/main/editable-canvas.vue.d.ts +2 -2
- package/dist/runtime/designer/ribbon/components/sub-table-form-modal.vue.d.ts +6 -6
- package/dist/runtime/factories/modules/useSpecificConfig.d.ts +2 -0
- package/dist/runtime/factories/useRenderData.d.ts +1 -1
- package/dist/runtime/factories/useWidgetInitializer.d.ts +11 -0
- package/dist/runtime/renderer/main/preview-canvas.vue.d.ts +2 -2
- package/dist/sdk/doc-runtime/factories/useDocumentFactory.d.ts +7 -1
- package/dist/sdk/engine/index.d.ts +3 -3
- package/dist/sdk/types/index.d.ts +11 -0
- package/dist/sdk/vue/layouts/doc-render-layout.vue.d.ts +2 -2
- package/dist/{core/sdk → utils/composables}/usePagesToPdf.d.ts +1 -1
- package/dist/utils/func/core.d.ts +26 -9
- package/dist/utils/func/field.d.ts +13 -0
- package/dist/utils/func/file.d.ts +1 -1
- package/dist/utils/func/form.d.ts +5 -0
- package/dist/utils/func/render.d.ts +10 -1
- package/dist/word.css +349 -305
- package/package.json +1 -2
- package/dist/base/utils/unit-converter-util.d.ts +0 -18
- package/dist/core/render/KonvaRenderer.d.ts +0 -46
- package/dist/core/render/RendererFactory.d.ts +0 -4
- package/dist/core/render/types.d.ts +0 -9
- package/dist/core/sdk/createDoc.d.ts +0 -2
- package/dist/runtime/interface/utils.d.ts +0 -12
- /package/dist/core/{sdk → utils}/DocPubApiContext.d.ts +0 -0
|
@@ -86,6 +86,7 @@ export declare function buildPosMap<T>(layers: Record<string, T>, getRect: (laye
|
|
|
86
86
|
export declare function buildDataIndexLayers(type: 'fixed-table' | 'check-table' | 'dynamic-table' | '2d-table', cellsWithId: any[], opts: {
|
|
87
87
|
BORDER_INSET: number;
|
|
88
88
|
GROUP_BG_INSET: number;
|
|
89
|
+
isEdit: boolean;
|
|
89
90
|
}, extra: (firstCell: any) => {
|
|
90
91
|
type: OutlineType;
|
|
91
92
|
placeholder: string;
|
|
@@ -4,7 +4,9 @@ export declare function useTableSelection(): {
|
|
|
4
4
|
readonly tableId: string;
|
|
5
5
|
readonly axis: "row" | "col" | "all";
|
|
6
6
|
readonly index: number;
|
|
7
|
+
readonly realRowIndex?: number | undefined;
|
|
7
8
|
} | null | undefined;
|
|
9
|
+
readonly activeTableId?: string | undefined;
|
|
8
10
|
readonly dragHoverId?: string | undefined;
|
|
9
11
|
readonly hoverModelId?: string | undefined;
|
|
10
12
|
readonly focusModelId?: string | undefined;
|
|
@@ -10,7 +10,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
10
10
|
}> & Readonly<{}>, {
|
|
11
11
|
stageRef: import('vue').Ref<any, any>;
|
|
12
12
|
contentLayerRef: import('vue').Ref<any, any>;
|
|
13
|
-
getPagesDataURL: () => Record<string, import('../../../
|
|
13
|
+
getPagesDataURL: () => Record<string, import('../../../utils/composables/usePagesToPdf').PaperItem>;
|
|
14
14
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
15
15
|
stageRef: unknown;
|
|
16
16
|
contentLayerRef: unknown;
|
|
@@ -42,7 +42,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
42
42
|
}> & Readonly<{}>, {
|
|
43
43
|
stageRef: import('vue').Ref<any, any>;
|
|
44
44
|
contentLayerRef: import('vue').Ref<any, any>;
|
|
45
|
-
getPagesDataURL: () => Record<string, import('../../../
|
|
45
|
+
getPagesDataURL: () => Record<string, import('../../../utils/composables/usePagesToPdf').PaperItem>;
|
|
46
46
|
}, {}, {}, {}, {}> | null;
|
|
47
47
|
}, HTMLDivElement>;
|
|
48
48
|
export default _default;
|
|
@@ -7,17 +7,17 @@ type __VLS_Props = {
|
|
|
7
7
|
};
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
9
9
|
formData: import('vue').Ref<{
|
|
10
|
-
|
|
10
|
+
key: undefined;
|
|
11
11
|
name: string;
|
|
12
|
-
|
|
12
|
+
dynamicKey: undefined;
|
|
13
13
|
}, {
|
|
14
|
-
|
|
14
|
+
key: undefined;
|
|
15
15
|
name: string;
|
|
16
|
-
|
|
16
|
+
dynamicKey: undefined;
|
|
17
17
|
} | {
|
|
18
|
-
|
|
18
|
+
key: undefined;
|
|
19
19
|
name: string;
|
|
20
|
-
|
|
20
|
+
dynamicKey: undefined;
|
|
21
21
|
}>;
|
|
22
22
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
23
23
|
export default _default;
|
|
@@ -36,5 +36,5 @@ export declare function useWidgetStaticAttrs(widget: any): {
|
|
|
36
36
|
/** 是否只读 */
|
|
37
37
|
showReadonly: import('vue').ComputedRef<boolean>;
|
|
38
38
|
/** 显示状态 */
|
|
39
|
-
showDisplayStatus: import('vue').ComputedRef<
|
|
39
|
+
showDisplayStatus: import('vue').ComputedRef<import('../../core/widget/widget-state').WidgetDisplayStatus>;
|
|
40
40
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Doc } from '../../core';
|
|
2
|
+
export interface WidgetInitializerOptions {
|
|
3
|
+
doc: Doc;
|
|
4
|
+
widget: any;
|
|
5
|
+
fieldInfo?: any;
|
|
6
|
+
ctx?: any;
|
|
7
|
+
}
|
|
8
|
+
/** widget 运行时初始化 */
|
|
9
|
+
export declare function useWidgetInitializer(options: WidgetInitializerOptions): {
|
|
10
|
+
init: (isSupport: boolean) => void;
|
|
11
|
+
};
|
|
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13
13
|
}> & Readonly<{}>, {
|
|
14
14
|
stageRef: import('vue').Ref<any, any>;
|
|
15
15
|
contentLayerRef: import('vue').Ref<any, any>;
|
|
16
|
-
getPagesDataURL: () => Record<string, import('../../../
|
|
16
|
+
getPagesDataURL: () => Record<string, import('../../../utils/composables/usePagesToPdf').PaperItem>;
|
|
17
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
18
18
|
stageRef: unknown;
|
|
19
19
|
contentLayerRef: unknown;
|
|
@@ -45,7 +45,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
45
45
|
}> & Readonly<{}>, {
|
|
46
46
|
stageRef: import('vue').Ref<any, any>;
|
|
47
47
|
contentLayerRef: import('vue').Ref<any, any>;
|
|
48
|
-
getPagesDataURL: () => Record<string, import('../../../
|
|
48
|
+
getPagesDataURL: () => Record<string, import('../../../utils/composables/usePagesToPdf').PaperItem>;
|
|
49
49
|
}, {}, {}, {}, {}> | null;
|
|
50
50
|
}, HTMLDivElement>;
|
|
51
51
|
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComputedRef, MaybeRef, Ref, ShallowRef } from 'vue';
|
|
2
2
|
import { DocModeType, Doc } from '../../../core';
|
|
3
|
-
import { DocInfo } from '../../types';
|
|
3
|
+
import { DocInfo, FieldPermissionInfo } from '../../types';
|
|
4
4
|
import { DesignSuiteContext } from '../../../runtime/_register_/context/DesignSuiteContext';
|
|
5
5
|
import { OnlineFormInstanceResponse, OnlineFormTmplResponse } from '@gct-paas/api/apaas';
|
|
6
6
|
export interface IDocProps {
|
|
@@ -26,6 +26,8 @@ export interface IDocTemplatePayload {
|
|
|
26
26
|
export interface IDocInstancePayload {
|
|
27
27
|
/** 是否是详情页面 */
|
|
28
28
|
isDetailPage?: boolean | Function;
|
|
29
|
+
/** 获取按钮显示规则(按钮是否需要强制只读) */
|
|
30
|
+
getBtnDisplayRules?: boolean | Function;
|
|
29
31
|
/** 组件传进来的参数 */
|
|
30
32
|
paramExtraProps?: Record<string, any>;
|
|
31
33
|
}
|
|
@@ -72,6 +74,10 @@ export interface Execute {
|
|
|
72
74
|
paramsConfig?: Record<string, any>;
|
|
73
75
|
/** 真实填报数据的查询条件 */
|
|
74
76
|
query: Record<string, any>;
|
|
77
|
+
/** 流程表单-流程节点类型 */
|
|
78
|
+
bpmnType?: string;
|
|
79
|
+
/** 字段权限map */
|
|
80
|
+
bpmnFieldAuthMap?: Record<string, FieldPermissionInfo>;
|
|
75
81
|
}
|
|
76
82
|
/**
|
|
77
83
|
* 文档加载工厂
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @gct-paas/word/engine
|
|
3
3
|
* 引擎公共 API 与类型
|
|
4
4
|
*/
|
|
5
|
-
export { DocModeTypeConst, PageSizeEnumConst, BuiltinComponentTypeConst } from '../../core
|
|
6
|
-
export type { DocModeType, CompleteComponentType, BuiltinComponentType } from '../../core
|
|
5
|
+
export { DocModeTypeConst, PageSizeEnumConst, BuiltinComponentTypeConst } from '../../core';
|
|
6
|
+
export type { DocModeType, CompleteComponentType, BuiltinComponentType } from '../../core';
|
|
7
7
|
export type { DocController, DocQueryAPI, WordRuntime, DocInfo, DocRuntimeMeta, DocRuntimeMetaHandleInfo, UseWordProps, UseWordOptions, } from '../types';
|
|
8
8
|
export { useWord } from '../doc-runtime/useWord';
|
|
9
9
|
export { useDocSuite } from '../doc-runtime/composables/useDocSuite';
|
|
@@ -11,4 +11,4 @@ export { useDocumentFactory } from '../doc-runtime/factories/useDocumentFactory'
|
|
|
11
11
|
export { useDocRuntimeProvider } from '../doc-runtime/composables/useDocRuntimeProvider';
|
|
12
12
|
export { useDocOperations } from '../doc-runtime/composables/useDocOperations';
|
|
13
13
|
export { useDocController } from '../doc-runtime/composables/useDocController';
|
|
14
|
-
export { getSubmitFormData } from '../../
|
|
14
|
+
export { getSubmitFormData } from '../../utils/func/render';
|
|
@@ -5,6 +5,16 @@ import { Page } from '../../core';
|
|
|
5
5
|
import { DocBaselineContext, DocOperations } from '../doc-runtime/composables/useDocOperations';
|
|
6
6
|
import { OnlineFormInstanceResponse, OnlineFormTmplResponse } from '@gct-paas/api/apaas';
|
|
7
7
|
import { FieldChangeItem } from '../../runtime/interface/change-diff';
|
|
8
|
+
import { FormTmplConfigController } from '../../suites/edhr/panel-schema/data-load/hooks/form-tmpl-config';
|
|
9
|
+
/** 字段权限信息 */
|
|
10
|
+
export interface FieldPermissionInfo {
|
|
11
|
+
modelKey: string;
|
|
12
|
+
fieldName: string;
|
|
13
|
+
field: string;
|
|
14
|
+
subModel: number;
|
|
15
|
+
edit: boolean;
|
|
16
|
+
readonly: boolean;
|
|
17
|
+
}
|
|
8
18
|
/** 套件插件协议 */
|
|
9
19
|
export interface WordSuitePlugin {
|
|
10
20
|
/** 套件唯一标识 */
|
|
@@ -119,6 +129,7 @@ export interface WordRuntime {
|
|
|
119
129
|
* - 通过该对象调用命令、读取页面与模式状态、访问只读查询 API。
|
|
120
130
|
*/
|
|
121
131
|
controller: ShallowRef<DocController | null>;
|
|
132
|
+
formTmplConfigController: FormTmplConfigController;
|
|
122
133
|
/** 文档响应式页面信息(用于驱动 canvas 渲染) */
|
|
123
134
|
docInfo: Ref<DocInfo>;
|
|
124
135
|
}
|
|
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
15
15
|
}> & Readonly<{}>, {
|
|
16
16
|
stageRef: import('vue').Ref<any, any>;
|
|
17
17
|
contentLayerRef: import('vue').Ref<any, any>;
|
|
18
|
-
getPagesDataURL: () => Record<string, import('../../../
|
|
18
|
+
getPagesDataURL: () => Record<string, import('../../../utils/composables/usePagesToPdf').PaperItem>;
|
|
19
19
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
20
20
|
stageRef: unknown;
|
|
21
21
|
contentLayerRef: unknown;
|
|
@@ -47,7 +47,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
47
47
|
}> & Readonly<{}>, {
|
|
48
48
|
stageRef: import('vue').Ref<any, any>;
|
|
49
49
|
contentLayerRef: import('vue').Ref<any, any>;
|
|
50
|
-
getPagesDataURL: () => Record<string, import('../../../
|
|
50
|
+
getPagesDataURL: () => Record<string, import('../../../utils/composables/usePagesToPdf').PaperItem>;
|
|
51
51
|
}, {}, {}, {}, {}> | null;
|
|
52
52
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
53
53
|
P: {};
|
|
@@ -6,11 +6,12 @@ export declare function uuid(): string;
|
|
|
6
6
|
export declare const halfPixel: (n: number) => number;
|
|
7
7
|
export declare const isEmptyValue: (value: any) => boolean;
|
|
8
8
|
/**
|
|
9
|
-
* 安全解析 JSON
|
|
10
|
-
* @param
|
|
11
|
-
* @
|
|
9
|
+
* 安全解析 JSON
|
|
10
|
+
* @param data 待解析数据
|
|
11
|
+
* @param fallback 失败时返回值,默认 null
|
|
12
|
+
* @param validator 结果校验器
|
|
12
13
|
*/
|
|
13
|
-
export declare function safeParseJson<T = any>(data: unknown): T | null;
|
|
14
|
+
export declare function safeParseJson<T = any>(data: unknown, fallback?: T | null, validator?: (value: unknown) => value is T): T | null;
|
|
14
15
|
/** 设置字段的默认valuePath */
|
|
15
16
|
export declare function generateValuePath(fieldLink: string, subFieldKey: string): string;
|
|
16
17
|
/**
|
|
@@ -19,7 +20,7 @@ export declare function generateValuePath(fieldLink: string, subFieldKey: string
|
|
|
19
20
|
* @param templatePath 模板路径(含 [n] 占位符,如 $.f_gdb[n].ccc / $.ddd[n].ccc)
|
|
20
21
|
* @returns 替换后的完整路径(如 $.f_gdb[1].ccc / $.ddd[1].ccc)
|
|
21
22
|
*/
|
|
22
|
-
export declare function replacePathIndexPlaceholder(refPath: string | number, templatePath: string): string;
|
|
23
|
+
export declare function replacePathIndexPlaceholder(refPath: string | number | undefined, templatePath: string): string;
|
|
23
24
|
/**
|
|
24
25
|
* 按分隔符截取字符串最后一个片段,处理空值/无分隔符边界
|
|
25
26
|
* @param str 待截取的字符串(允许空/undefined)
|
|
@@ -50,8 +51,24 @@ export declare function flattenTree<T extends Record<string, any>>(tree: T[], ch
|
|
|
50
51
|
/** 从 URL 提取 name */
|
|
51
52
|
export declare function getFileName(url: string): string;
|
|
52
53
|
/**
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
* @returns {boolean} true=合法数值,false=非数值
|
|
54
|
+
* 编辑态校验:允许键入过程中的中间态(如 `.`、`1.`、`-`、`-.`)
|
|
55
|
+
* 不允许任何空白字符(避免写入 DataManager 脏数据)
|
|
56
56
|
*/
|
|
57
|
-
export declare function
|
|
57
|
+
export declare function isNumberTextEditing(text: any): boolean;
|
|
58
|
+
/**
|
|
59
|
+
* 合并两个按钮数组
|
|
60
|
+
* @param {Array} A - 基础数组
|
|
61
|
+
* @param {Array} B - 更新数组
|
|
62
|
+
* @param {Object} options
|
|
63
|
+
* @param {string[]} options.keyFields - 用于唯一匹配的字段
|
|
64
|
+
* @param {string[]} options.fieldsToMerge - 从 B 合并到 A 的字段
|
|
65
|
+
* @param {boolean} options.isAllowMerge - 是否允许合并
|
|
66
|
+
* @param {boolean} options.isConcat - 如果 A数组是空是否直接用B 数组
|
|
67
|
+
* @returns {Array} 合并后的数组
|
|
68
|
+
*/
|
|
69
|
+
export declare function mergeByMultiKey(A: any[], B: any[], { keyFields, fieldsToMerge, isAllowMerge, isConcat, }?: {
|
|
70
|
+
keyFields?: string[] | undefined;
|
|
71
|
+
fieldsToMerge?: string[] | undefined;
|
|
72
|
+
isAllowMerge?: boolean | undefined;
|
|
73
|
+
isConcat?: boolean | undefined;
|
|
74
|
+
}): any[];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** 字段处理工具 */
|
|
2
|
+
interface DeduplicateFieldBase {
|
|
3
|
+
modelKey: string;
|
|
4
|
+
field: string;
|
|
5
|
+
edit: boolean;
|
|
6
|
+
}
|
|
7
|
+
/** 获取流程字段权限map */
|
|
8
|
+
export declare function getBpmnFieldAuthMap<T extends DeduplicateFieldBase>(list: T[]): {
|
|
9
|
+
[k: string]: T;
|
|
10
|
+
};
|
|
11
|
+
/** 处理字段列表-优先编辑 */
|
|
12
|
+
export declare function deduplicateFields<T extends DeduplicateFieldBase>(data: T[]): T[];
|
|
13
|
+
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare function getUploadFileIcon(name?: string): "attachment" | "doc" | "
|
|
1
|
+
export declare function getUploadFileIcon(name?: string): "attachment" | "doc" | "pdf" | "xlsx" | "mp4" | "ppt" | "img";
|
|
2
2
|
export declare const formatSize: (size?: number) => string;
|
|
@@ -29,3 +29,8 @@ export declare function formatDateTime(attrs: any, value?: string): string;
|
|
|
29
29
|
export declare function formatDateTimeHook(props: any, value?: string): string;
|
|
30
30
|
/** 判断一个日期或日期时间字符串是否在最小和最大时间戳之间 */
|
|
31
31
|
export declare function isOutOfRange(inputStr: string, minTimestamp?: number, maxTimestamp?: number): boolean;
|
|
32
|
+
/**
|
|
33
|
+
* 格式化数字
|
|
34
|
+
*/
|
|
35
|
+
export declare function formatNumber(attrs: any, type: string, value?: string | number): string | number | undefined;
|
|
36
|
+
export declare function formatNumberHook(props: any, type: string, value?: string | number): string | number | undefined;
|
|
@@ -1,7 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
import { FieldMeta } from '../../capabilities/model-field-runtime';
|
|
2
2
|
export declare function transformSourceData(sourceData: any, i18nData: any): any;
|
|
3
3
|
export declare function transformSourceDataList(data: any[], dict?: {}): {
|
|
4
4
|
_DICT: object;
|
|
5
5
|
_OPCT: any;
|
|
6
6
|
[key: string]: any;
|
|
7
7
|
}[];
|
|
8
|
+
/** 转换formState */
|
|
9
|
+
export declare function conversionFormState(payload: {
|
|
10
|
+
/** 主从关联字段列表 */
|
|
11
|
+
masterSlaveList: FieldMeta[];
|
|
12
|
+
/** 渲染数据列表 */
|
|
13
|
+
interfaceData: any;
|
|
14
|
+
}): Record<string, any>;
|
|
15
|
+
/** 数据转成真实提交数据(二维表要平铺) */
|
|
16
|
+
export declare function getSubmitFormData(formData: any): any;
|