ztxkui 4.2.23-182 → 4.2.23-183
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { IElectronSignaturesProps, IElectronSignaturesItem, IAppointSignLocationOptions } from '../interface';
|
|
3
3
|
import type { SpinProps } from 'antd/es/spin';
|
|
4
4
|
interface IOptions {
|
|
@@ -67,13 +67,13 @@ export default function useParseElectronSetting(options: IOptions): {
|
|
|
67
67
|
clickElectronicSealIdList: string[];
|
|
68
68
|
/** 当前合同id数据 */
|
|
69
69
|
currentContractId: any;
|
|
70
|
-
setCurrentContractId:
|
|
70
|
+
setCurrentContractId: React.Dispatch<any>;
|
|
71
71
|
/** 当前合同id下 附件与文档的关联关系 */
|
|
72
72
|
currentDocAttachMap: any;
|
|
73
|
-
setCurrentDocAttachMap:
|
|
73
|
+
setCurrentDocAttachMap: React.Dispatch<any>;
|
|
74
74
|
/** 当前文档列表数据 */
|
|
75
75
|
currentDocumentIdList: any;
|
|
76
|
-
setCurrentDocumentIdList:
|
|
76
|
+
setCurrentDocumentIdList: React.Dispatch<any>;
|
|
77
77
|
/** 指定签署位置 */
|
|
78
78
|
appointSignLocation: (options?: IAppointSignLocationOptions) => void;
|
|
79
79
|
/** 预览盖章效果 */
|