sun-biz 0.0.3-beta.2 → 0.0.3-beta.20
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/components/dml-button/api/index.d.ts +26 -0
- package/dist/components/dml-button/index.d.ts +1 -0
- package/dist/components/index.d.ts +12 -11
- package/dist/components/index.js +1184 -616
- package/dist/components/print/api/index.d.ts +6 -0
- package/dist/components/print/hooks/index.d.ts +14 -0
- package/dist/components/print/index.d.ts +2 -1
- package/dist/components/print/print.d.ts +6 -5
- package/dist/components/print/template.d.ts +1 -0
- package/dist/components/pro-dialog/hooks/useDialog.d.ts +1 -1
- package/dist/components/pro-form/index.d.ts +1 -0
- package/dist/components/pro-table/composables/dbgrid-component-setting/index.d.ts +3 -0
- package/dist/components/pro-table/composables/dbgrid-component-setting/typings/index.d.ts +9 -0
- package/dist/components/pro-table/utils.d.ts +17 -2
- package/dist/components/static/css/index.css +12 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/use-app-config/index.d.ts +6 -1
- package/dist/hooks/use-app-config/types.d.ts +15 -0
- package/dist/index.d.ts +21 -19
- package/dist/index.js +1184 -616
- package/dist/static/css/index.css +12 -1
- package/package.json +15 -6
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [1-10008-1]根据条件生成DML脚本
|
|
3
|
+
* @param data
|
|
4
|
+
* @returns
|
|
5
|
+
*/
|
|
6
|
+
export declare const exportDmlScriptByExample: (params: {
|
|
7
|
+
bizIdTypeCode: string;
|
|
8
|
+
bisIds: string[];
|
|
9
|
+
dataBaseTypeCode: string;
|
|
10
|
+
}) => Promise<[import("@sun-toolkit/request").SunApiResultData<null> | undefined, import("@sun-toolkit/request").SunApiResultData<{
|
|
11
|
+
data: string;
|
|
12
|
+
fileName: string;
|
|
13
|
+
}> | undefined]>;
|
|
14
|
+
/**
|
|
15
|
+
* 根据条件生成DML脚本 mdm 专用
|
|
16
|
+
* @param data
|
|
17
|
+
* @returns
|
|
18
|
+
*/
|
|
19
|
+
export declare const exportMdmDmlScriptByExample: (params: {
|
|
20
|
+
bizIdTypeCode: string;
|
|
21
|
+
bisIds: string[];
|
|
22
|
+
dataBaseTypeCode: string;
|
|
23
|
+
}) => Promise<[import("@sun-toolkit/request").SunApiResultData<null> | undefined, import("@sun-toolkit/request").SunApiResultData<{
|
|
24
|
+
data: string;
|
|
25
|
+
fileName: string;
|
|
26
|
+
}> | undefined]>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as DmlButton } from './index.vue';
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export { ProForm, FormUnit, convertToWbNo, convertToSpellNo, } from
|
|
6
|
-
export { Title } from
|
|
7
|
-
export { ProDialog } from
|
|
8
|
-
export { AccessInfo } from
|
|
9
|
-
export { FormDesignRender } from
|
|
10
|
-
export { CopyTextWithTooltip } from
|
|
11
|
-
export { DictSelect, FlagSelect, HospitalSelect } from
|
|
1
|
+
export * from './invoice/index.ts';
|
|
2
|
+
export * from './pro-table/index.ts';
|
|
3
|
+
export * from './patient-access/index.ts';
|
|
4
|
+
export * from './print/index.ts';
|
|
5
|
+
export { ProForm, FormUnit, convertToWbNo, convertToSpellNo, type FormDescItem, } from './pro-form/index.ts';
|
|
6
|
+
export { Title } from './title/index.ts';
|
|
7
|
+
export { ProDialog } from './pro-dialog/index.ts';
|
|
8
|
+
export { AccessInfo } from './access-info/index.ts';
|
|
9
|
+
export { FormDesignRender } from './form-design-render/index.ts';
|
|
10
|
+
export { CopyTextWithTooltip } from './copy-text-with-tooltip/index.ts';
|
|
11
|
+
export { DictSelect, FlagSelect, HospitalSelect } from './biz-select/index.ts';
|
|
12
|
+
export { DmlButton } from './dml-button/index.ts';
|