zmdms-webui 2.3.0 → 2.3.2

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.
Files changed (283) hide show
  1. package/dist/es/canvastable/canvasTable.js +367 -0
  2. package/dist/es/canvastable/components/BadgePopover.js +27 -0
  3. package/dist/es/canvastable/components/CanvasTableMenu.js +74 -0
  4. package/dist/es/canvastable/components/CellOverlay.js +49 -0
  5. package/dist/es/canvastable/components/ColumnDynamic.js +12 -0
  6. package/dist/es/canvastable/components/EmptyPlaceholder.js +20 -0
  7. package/dist/es/canvastable/components/FilterPopover.js +274 -0
  8. package/dist/es/canvastable/components/HeaderOverlay.js +22 -0
  9. package/dist/es/canvastable/components/Tooltip.js +27 -0
  10. package/dist/es/canvastable/hooks/useClickOutside.js +30 -0
  11. package/dist/es/canvastable/hooks/useColumnResize.js +130 -0
  12. package/dist/es/canvastable/hooks/useContainerSize.js +40 -0
  13. package/dist/es/canvastable/hooks/useCopyToClipboard.js +150 -0
  14. package/dist/es/canvastable/hooks/useHeaderHeight.js +103 -0
  15. package/dist/es/canvastable/hooks/useMergeCells.js +111 -0
  16. package/dist/es/canvastable/hooks/useOverlays.js +364 -0
  17. package/dist/es/canvastable/hooks/usePopovers.js +93 -0
  18. package/dist/es/canvastable/hooks/useProcessedColumns.js +94 -0
  19. package/dist/es/canvastable/hooks/useScroll.js +251 -0
  20. package/dist/es/canvastable/hooks/useSummaryRow.js +81 -0
  21. package/dist/es/canvastable/hooks/useTableInteraction.js +804 -0
  22. package/dist/es/canvastable/hooks/useTableRender.js +1289 -0
  23. package/dist/es/canvastable/hooks/useTableSelection.js +57 -0
  24. package/dist/es/canvastable/hooks/useTableState.js +218 -0
  25. package/dist/es/canvastable/index.js +5 -0
  26. package/dist/es/canvastable/utils/canvasDrawHelpers.js +156 -0
  27. package/dist/es/canvastable/utils/cellHelpers.js +121 -0
  28. package/dist/es/canvastable/utils/columnHelpers.js +67 -0
  29. package/dist/es/canvastable/utils/constants.js +42 -0
  30. package/dist/es/canvastable/utils/formatHelpers.js +60 -0
  31. package/dist/es/canvastable/utils/interactionHelpers.js +176 -0
  32. package/dist/es/canvastable/utils/multiHeaderHelpers.js +82 -0
  33. package/dist/es/canvastable/utils/tableCalculations.js +100 -0
  34. package/dist/index.es.css +1 -1
  35. package/dist/index.es.js +1 -0
  36. package/package.json +1 -1
  37. package/dist/es/alert/alert.d.ts +0 -5
  38. package/dist/es/alert/index.css +0 -1
  39. package/dist/es/alert/index.d.ts +0 -5
  40. package/dist/es/alert/interface.d.ts +0 -14
  41. package/dist/es/applayout/appLayout.d.ts +0 -11
  42. package/dist/es/applayout/index.css +0 -1
  43. package/dist/es/applayout/index.d.ts +0 -5
  44. package/dist/es/applayoutheader/appLayoutHeader.d.ts +0 -16
  45. package/dist/es/applayoutheader/index.d.ts +0 -5
  46. package/dist/es/applayoutsider/appLayoutSider.d.ts +0 -57
  47. package/dist/es/applayoutsider/index.d.ts +0 -5
  48. package/dist/es/authloading/authLoading.d.ts +0 -5
  49. package/dist/es/authloading/index.css +0 -1
  50. package/dist/es/authloading/index.d.ts +0 -5
  51. package/dist/es/button/button.d.ts +0 -5
  52. package/dist/es/button/buttonDownload.d.ts +0 -25
  53. package/dist/es/button/buttonExport.d.ts +0 -15
  54. package/dist/es/button/buttonFullScreen.d.ts +0 -9
  55. package/dist/es/button/buttonPreview.d.ts +0 -26
  56. package/dist/es/button/index.css +0 -1
  57. package/dist/es/button/index.d.ts +0 -5
  58. package/dist/es/button/interface.d.ts +0 -34
  59. package/dist/es/calendar/index.d.ts +0 -7
  60. package/dist/es/cascader/index.css +0 -1
  61. package/dist/es/collapse/collapse.d.ts +0 -7
  62. package/dist/es/collapse/index.css +0 -1
  63. package/dist/es/collapse/index.d.ts +0 -5
  64. package/dist/es/collapse/interface.d.ts +0 -25
  65. package/dist/es/config/ZtxkContext.d.ts +0 -32
  66. package/dist/es/container/container.d.ts +0 -51
  67. package/dist/es/container/index.css +0 -1
  68. package/dist/es/container/index.d.ts +0 -5
  69. package/dist/es/datepicker/index.css +0 -1
  70. package/dist/es/datepicker/index.d.ts +0 -48
  71. package/dist/es/datepicker/interface.d.ts +0 -56
  72. package/dist/es/descriptions/descriptions.d.ts +0 -5
  73. package/dist/es/descriptions/index.css +0 -1
  74. package/dist/es/descriptions/index.d.ts +0 -5
  75. package/dist/es/descriptions/interface.d.ts +0 -12
  76. package/dist/es/detaillist/index.css +0 -1
  77. package/dist/es/detaillist/index.d.ts +0 -5
  78. package/dist/es/detaillist/item.d.ts +0 -35
  79. package/dist/es/detaillist/list.d.ts +0 -17
  80. package/dist/es/differences/differences.d.ts +0 -5
  81. package/dist/es/differences/index.css +0 -1
  82. package/dist/es/differences/index.d.ts +0 -5
  83. package/dist/es/differences/interface.d.ts +0 -17
  84. package/dist/es/dynamicsetting/dynamicSetting.d.ts +0 -6
  85. package/dist/es/dynamicsetting/index.css +0 -1
  86. package/dist/es/dynamicsetting/index.d.ts +0 -5
  87. package/dist/es/dynamicsetting/interface.d.ts +0 -43
  88. package/dist/es/electronsignatures/index.css +0 -1
  89. package/dist/es/electronsignatures/index.d.ts +0 -6
  90. package/dist/es/electronsignatures/interface.d.ts +0 -500
  91. package/dist/es/enhanceselect/enhance-select.d.ts +0 -6
  92. package/dist/es/enhanceselect/index.d.ts +0 -5
  93. package/dist/es/enhanceselect/interface.d.ts +0 -71
  94. package/dist/es/footer/footer.d.ts +0 -6
  95. package/dist/es/footer/index.css +0 -1
  96. package/dist/es/footer/index.d.ts +0 -5
  97. package/dist/es/footer/interface.d.ts +0 -34
  98. package/dist/es/form/form.d.ts +0 -18
  99. package/dist/es/form/index.css +0 -1
  100. package/dist/es/form/index.d.ts +0 -5
  101. package/dist/es/form/interface.d.ts +0 -91
  102. package/dist/es/formitem/formItem.d.ts +0 -115
  103. package/dist/es/formitem/index.css +0 -1
  104. package/dist/es/formitem/index.d.ts +0 -5
  105. package/dist/es/icon/icon-oss.d.ts +0 -6
  106. package/dist/es/icon/index.d.ts +0 -6
  107. package/dist/es/input/TextArea.d.ts +0 -13
  108. package/dist/es/input/index.css +0 -1
  109. package/dist/es/input/index.d.ts +0 -5
  110. package/dist/es/input/input.d.ts +0 -23
  111. package/dist/es/inputnumber/index.css +0 -1
  112. package/dist/es/inputnumber/index.d.ts +0 -5
  113. package/dist/es/inputnumber/inputNumber.d.ts +0 -28
  114. package/dist/es/inputnumber/interface.d.ts +0 -4
  115. package/dist/es/leftcontent/index.css +0 -1
  116. package/dist/es/leftcontent/index.d.ts +0 -5
  117. package/dist/es/leftcontent/leftContent.d.ts +0 -31
  118. package/dist/es/login/index.css +0 -1
  119. package/dist/es/login/index.d.ts +0 -37
  120. package/dist/es/message/index.css +0 -1
  121. package/dist/es/message/index.d.ts +0 -5
  122. package/dist/es/microloading/index.css +0 -1
  123. package/dist/es/microloading/index.d.ts +0 -5
  124. package/dist/es/microloading/micro-loading.d.ts +0 -8
  125. package/dist/es/modal/index.css +0 -1
  126. package/dist/es/modal/index.d.ts +0 -5
  127. package/dist/es/modal/interface.d.ts +0 -91
  128. package/dist/es/modal/modal.d.ts +0 -5
  129. package/dist/es/notauthpage/index.css +0 -0
  130. package/dist/es/notauthpage/index.d.ts +0 -5
  131. package/dist/es/notauthpage/notAuthPage.d.ts +0 -8
  132. package/dist/es/notroutepage/index.css +0 -0
  133. package/dist/es/notroutepage/index.d.ts +0 -5
  134. package/dist/es/notroutepage/notRoutePage.d.ts +0 -8
  135. package/dist/es/operationbtn/index.d.ts +0 -5
  136. package/dist/es/operationbtn/interface.d.ts +0 -34
  137. package/dist/es/operationbtn/operationBtn.d.ts +0 -6
  138. package/dist/es/pagination/index.css +0 -1
  139. package/dist/es/pagination/index.d.ts +0 -5
  140. package/dist/es/pagination/pagination.d.ts +0 -8
  141. package/dist/es/placeholder/index.css +0 -1
  142. package/dist/es/placeholder/index.d.ts +0 -5
  143. package/dist/es/placeholder/interface.d.ts +0 -12
  144. package/dist/es/placeholder/placeholder.d.ts +0 -5
  145. package/dist/es/print/index.css +0 -1
  146. package/dist/es/print/index.d.ts +0 -5
  147. package/dist/es/print/interface.d.ts +0 -69
  148. package/dist/es/print/print-page.d.ts +0 -6
  149. package/dist/es/print/print.d.ts +0 -5
  150. package/dist/es/protectedroute/index.d.ts +0 -24
  151. package/dist/es/select/hooks.d.ts +0 -16
  152. package/dist/es/select/index.css +0 -1
  153. package/dist/es/select/index.d.ts +0 -5
  154. package/dist/es/select/interface.d.ts +0 -82
  155. package/dist/es/select/select-render.d.ts +0 -31
  156. package/dist/es/select/select.d.ts +0 -5
  157. package/dist/es/sortable/index.d.ts +0 -5
  158. package/dist/es/sortable/sortable-item.d.ts +0 -14
  159. package/dist/es/sortable/sortable.d.ts +0 -13
  160. package/dist/es/suspensecomponent/index.d.ts +0 -10
  161. package/dist/es/table/components/Badge.d.ts +0 -24
  162. package/dist/es/table/components/TitleDirectionColumn.d.ts +0 -11
  163. package/dist/es/table/constant.d.ts +0 -3
  164. package/dist/es/table/index.css +0 -1
  165. package/dist/es/table/index.d.ts +0 -5
  166. package/dist/es/table/interface.d.ts +0 -613
  167. package/dist/es/table/table.d.ts +0 -11
  168. package/dist/es/tabs/index.css +0 -1
  169. package/dist/es/tabs/index.d.ts +0 -5
  170. package/dist/es/tabs/interface.d.ts +0 -52
  171. package/dist/es/tabs/tabs.d.ts +0 -5
  172. package/dist/es/tag/index.css +0 -1
  173. package/dist/es/tag/index.d.ts +0 -5
  174. package/dist/es/tag/interface.d.ts +0 -9
  175. package/dist/es/tag/tag.d.ts +0 -5
  176. package/dist/es/timepicker/index.d.ts +0 -19
  177. package/dist/es/title/index.css +0 -1
  178. package/dist/es/title/index.d.ts +0 -5
  179. package/dist/es/title/interface.d.ts +0 -35
  180. package/dist/es/title/title.d.ts +0 -5
  181. package/dist/es/tree/index.css +0 -1
  182. package/dist/es/tree/index.d.ts +0 -5
  183. package/dist/es/tree/interface.d.ts +0 -44
  184. package/dist/es/tree/tree.d.ts +0 -5
  185. package/dist/es/treeselect/index.css +0 -1
  186. package/dist/es/treeselect/index.d.ts +0 -5
  187. package/dist/es/treeselect/interface.d.ts +0 -32
  188. package/dist/es/treeselect/treeSelect.d.ts +0 -5
  189. package/dist/es/uploadlist/index.css +0 -1
  190. package/dist/es/uploadlist/index.d.ts +0 -5
  191. package/dist/es/uploadlist/interface.d.ts +0 -113
  192. package/dist/es/uploadlist/uploadList.d.ts +0 -5
  193. package/dist/es/watermark/index.css +0 -1
  194. package/dist/es/watermark/index.d.ts +0 -5
  195. package/dist/es/watermark/interface.d.ts +0 -23
  196. package/dist/es/watermark/watermark.d.ts +0 -5
  197. package/dist/es/zttransfer/index.css +0 -1
  198. package/dist/es/zttransfer/index.d.ts +0 -5
  199. package/dist/es/zttransfer/interface.d.ts +0 -38
  200. package/dist/es/zttransfer/zt-transfer.d.ts +0 -6
  201. package/dist/index.build.d.ts +0 -67
  202. package/dist/index.dark.css +0 -2
  203. package/dist/index.default.css +0 -2
  204. package/dist/less/components/Alert/style/index.less +0 -53
  205. package/dist/less/components/Alert/style/style.less +0 -4
  206. package/dist/less/components/AppLayout/style/index.less +0 -546
  207. package/dist/less/components/AppLayout/style/style.less +0 -2
  208. package/dist/less/components/AppLayout/style.less +0 -5
  209. package/dist/less/components/AuthLoading/style/index.less +0 -15
  210. package/dist/less/components/AuthLoading/style/style.less +0 -2
  211. package/dist/less/components/Button/style/index.less +0 -160
  212. package/dist/less/components/Button/style/style.less +0 -5
  213. package/dist/less/components/Cascader/style/index.less +0 -9
  214. package/dist/less/components/Cascader/style/style.less +0 -2
  215. package/dist/less/components/Collapse/style/index.less +0 -117
  216. package/dist/less/components/Collapse/style/style.less +0 -2
  217. package/dist/less/components/Container/style/index.less +0 -64
  218. package/dist/less/components/Container/style/style.less +0 -2
  219. package/dist/less/components/DatePicker/style/index.less +0 -7
  220. package/dist/less/components/DatePicker/style/style.less +0 -4
  221. package/dist/less/components/Descriptions/style/index.less +0 -32
  222. package/dist/less/components/Descriptions/style/style.less +0 -5
  223. package/dist/less/components/DetailList/style/index.less +0 -105
  224. package/dist/less/components/DetailList/style/style.less +0 -2
  225. package/dist/less/components/Differences/style/index.less +0 -5
  226. package/dist/less/components/Differences/style/style.less +0 -2
  227. package/dist/less/components/DynamicSetting/style/index.less +0 -96
  228. package/dist/less/components/DynamicSetting/style/style.less +0 -2
  229. package/dist/less/components/ElectronSignatures/style/index.less +0 -331
  230. package/dist/less/components/ElectronSignatures/style/style.less +0 -1
  231. package/dist/less/components/Footer/style/index.less +0 -28
  232. package/dist/less/components/Footer/style/style.less +0 -2
  233. package/dist/less/components/Form/style/index.less +0 -150
  234. package/dist/less/components/Form/style/style.less +0 -5
  235. package/dist/less/components/FormItem/style/index.less +0 -456
  236. package/dist/less/components/FormItem/style/style.less +0 -2
  237. package/dist/less/components/Input/style/index.less +0 -15
  238. package/dist/less/components/Input/style/style.less +0 -4
  239. package/dist/less/components/InputNumber/style/index.less +0 -30
  240. package/dist/less/components/InputNumber/style/style.less +0 -4
  241. package/dist/less/components/LeftContent/style/index.less +0 -62
  242. package/dist/less/components/LeftContent/style/style.less +0 -2
  243. package/dist/less/components/Login/style/index.less +0 -63
  244. package/dist/less/components/Login/style/style.less +0 -2
  245. package/dist/less/components/Message/style/index.less +0 -19
  246. package/dist/less/components/Message/style/style.less +0 -2
  247. package/dist/less/components/MicroLoading/style/index.less +0 -15
  248. package/dist/less/components/MicroLoading/style/style.less +0 -2
  249. package/dist/less/components/Modal/style/index.less +0 -43
  250. package/dist/less/components/Modal/style/style.less +0 -2
  251. package/dist/less/components/NotAuthPage/style/index.less +0 -0
  252. package/dist/less/components/NotAuthPage/style/style.less +0 -2
  253. package/dist/less/components/NotRoutePage/style/index.less +0 -0
  254. package/dist/less/components/NotRoutePage/style/style.less +0 -2
  255. package/dist/less/components/Pagination/style/index.less +0 -107
  256. package/dist/less/components/Pagination/style/style.less +0 -5
  257. package/dist/less/components/Placeholder/style/index.less +0 -3
  258. package/dist/less/components/Placeholder/style/style.less +0 -2
  259. package/dist/less/components/Print/style/index.less +0 -65
  260. package/dist/less/components/Print/style/style.less +0 -3
  261. package/dist/less/components/Select/style/index.less +0 -55
  262. package/dist/less/components/Select/style/style.less +0 -4
  263. package/dist/less/components/Table/style/index.less +0 -362
  264. package/dist/less/components/Table/style/style.less +0 -4
  265. package/dist/less/components/Tabs/style/index.less +0 -118
  266. package/dist/less/components/Tabs/style/style.less +0 -4
  267. package/dist/less/components/Tag/style/index.less +0 -3
  268. package/dist/less/components/Tag/style/style.less +0 -4
  269. package/dist/less/components/Title/style/index.less +0 -54
  270. package/dist/less/components/Title/style/style.less +0 -2
  271. package/dist/less/components/Tree/style/index.less +0 -58
  272. package/dist/less/components/Tree/style/style.less +0 -4
  273. package/dist/less/components/TreeSelect/style/index.less +0 -0
  274. package/dist/less/components/TreeSelect/style/style.less +0 -4
  275. package/dist/less/components/UploadList/style/index.less +0 -61
  276. package/dist/less/components/UploadList/style/style.less +0 -4
  277. package/dist/less/components/Watermark/style/index.less +0 -7
  278. package/dist/less/components/Watermark/style/style.less +0 -3
  279. package/dist/less/components/ZtTransfer/style/index.less +0 -136
  280. package/dist/less/components/ZtTransfer/style/style.less +0 -2
  281. package/dist/less/styles/default.less +0 -100
  282. package/dist/less/styles/index.less +0 -86
  283. package/dist/less/styles/reset.less +0 -189
@@ -1,5 +0,0 @@
1
- import DetailList from './list.js';
2
-
3
-
4
-
5
- export { DetailList as default };
@@ -1,35 +0,0 @@
1
- import React__default from 'react';
2
- import { ColProps } from 'antd/lib/col';
3
-
4
- interface IProps extends ColProps {
5
- title: string;
6
- /** 鼠标放到title上的文本 如果是false 那不显示 */
7
- isPopTitle?: string | boolean;
8
- /** 标题前置插件 */
9
- titleSlotBefore?: React__default.ReactNode;
10
- /** 标题后置插件 */
11
- titleSlotAfter?: React__default.ReactNode;
12
- colon?: boolean;
13
- span: number;
14
- titleSpan?: number;
15
- titleStyle?: React__default.CSSProperties;
16
- isContentMerge?: boolean;
17
- titleProps?: any;
18
- /** 多余得属性 */
19
- textProps?: any;
20
- /**是否显示差别 */
21
- showDiff?: boolean;
22
- /** 是否添加超出隐藏 */
23
- isEllipsis?: boolean;
24
- /** 是否加粗 */
25
- isBlod?: boolean;
26
- /** isFlex */
27
- isFlex?: boolean;
28
- /** title增加必填标识 */
29
- isRequired?: boolean;
30
- /** title在flex下垂直居中 */
31
- titleVerticalCenter?: boolean;
32
- }
33
- declare const Item: React__default.FC<IProps>;
34
-
35
- export { IProps, Item as default };
@@ -1,17 +0,0 @@
1
- import React__default from 'react';
2
- import { RowProps } from 'antd/lib/row';
3
- import Item from './item.js';
4
-
5
- interface IListProps extends RowProps {
6
- border?: boolean;
7
- isBg?: boolean;
8
- isFlex?: boolean;
9
- size?: "default" | "large";
10
- }
11
- interface ListComponent extends React__default.FC<IListProps> {
12
- Item: typeof Item;
13
- displayName: string;
14
- }
15
- declare const DetailList: ListComponent;
16
-
17
- export { IListProps, DetailList as default };
@@ -1,5 +0,0 @@
1
- import { DifferencesComponent } from './interface.js';
2
-
3
- declare const MemoDifferences: DifferencesComponent;
4
-
5
- export { MemoDifferences as default };
@@ -1 +0,0 @@
1
- .ztxk-differences{background-color:#fcecc8;border-radius:4px;padding:6px}
@@ -1,5 +0,0 @@
1
- import MemoDifferences from './differences.js';
2
-
3
-
4
-
5
- export { MemoDifferences as default };
@@ -1,17 +0,0 @@
1
- import React__default from 'react';
2
-
3
- interface IDifferencesProps {
4
- children?: React__default.ReactNode;
5
- /** 自定义描述 */
6
- describe?: string;
7
- /** 之前的值 */
8
- preValue?: any;
9
- /** 现在的值 */
10
- currentValue?: any;
11
- className?: string;
12
- }
13
- interface DifferencesComponent extends React__default.FC<IDifferencesProps> {
14
- displayName: string;
15
- }
16
-
17
- export { DifferencesComponent, IDifferencesProps };
@@ -1,6 +0,0 @@
1
- import React__default from 'react';
2
- import { IDynamicSettingProps, IRef } from './interface.js';
3
-
4
- declare const _default: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<IDynamicSettingProps & React__default.RefAttributes<IRef>>>;
5
-
6
- export { _default as default };
@@ -1 +0,0 @@
1
- .zt-sortable-new{cursor:move;font-size:13px;line-height:1.5;overflow:hidden;padding:8px 0;text-align:left}.zt-sortable-new .zt-sortable--item{align-items:center;display:flex;justify-content:space-between;padding:0 16px}.zt-sortable-new .zt-sortable--item span{white-space:break-spaces}.zt-sortable-new .zt-sortable--children{display:flex}.zt-sortable-new .zt-sortable--children .zt-sortable-new{border-bottom:none;padding:8px 26px}.zt-sortable-new .zt-sortable--children span{white-space:break-spaces}.zt-sortable-new.no-move{cursor:no-drop}.zt-sortable-new .zt-checkbox{font-size:13px}.zt-sortable-new:hover{background-color:#ebf3fe}.ztxk-dynamic--more{cursor:pointer;height:20px}.ant-dropdown-show-arrow.ztxk-dynamic--more--drop{padding-top:0}.ztxk-dynamic--more--drop.ant-dropdown-placement-bottomRight>.ant-dropdown-arrow{top:-5px}.dynamic-drawer .ant-drawer-header{padding:10px 12px}.dynamic-drawer .ant-drawer-header .ant-drawer-title>div{align-items:center;color:#768696;display:flex;font-size:16px}.dynamic-drawer .ant-drawer-header .ant-drawer-title>div .search-drawer--title-text{font-size:14px;margin-left:10px}.dynamic-drawer .ant-drawer-header .ant-drawer-title>div .search-drawer--title-text>span{font-size:13px}.dynamic-drawer .ant-drawer-body{padding:0}.dynamic-drawer .ant-drawer-body .ant-checkbox-group{width:100%}.dynamic-drawer .ant-drawer-footer{border-top:none;display:flex;justify-content:space-between;padding:0}.dynamic-drawer .ant-drawer-footer>button{border:none;border-radius:0;height:40px;width:33%}.dynamic-drawer-section-title{background:#f5f5f5;border-radius:6px;font-size:14px;font-weight:700;padding:4px}
@@ -1,5 +0,0 @@
1
- import _default from './dynamicSetting.js';
2
-
3
-
4
-
5
- export { _default as default };
@@ -1,43 +0,0 @@
1
- import React__default from 'react';
2
-
3
- interface IDynamicItem {
4
- key: string;
5
- label?: React__default.ReactNode;
6
- disabled?: boolean;
7
- checked?: boolean;
8
- children?: IDynamicItem[];
9
- indexs?: number[];
10
- filter?: IFilter;
11
- isDimension?: boolean;
12
- dimensionPriority?: number;
13
- /** 维度优先级分组,同组内遵循 dimensionPriority,跨组不比较 */
14
- dimensionGroup?: string;
15
- dimensionExclusive?: string;
16
- isDimensionSum?: boolean;
17
- [props: string]: any;
18
- }
19
- interface IFilter {
20
- input?: string;
21
- checkbox?: React__default.Key[];
22
- }
23
- interface IDynamicSettingProps {
24
- parentDynamicKey: string;
25
- dynamicKey: string;
26
- defaultList: IDynamicItem[];
27
- onCurrentListChange?: (currentList: IDynamicItem[]) => void;
28
- children?: JSX.Element;
29
- title?: string;
30
- hiddenOperationIcon?: boolean;
31
- isMore?: boolean;
32
- isFixed?: boolean;
33
- isDimensionDynamic?: boolean;
34
- }
35
- interface IRef {
36
- getCurrentDynamicList: (list: IDynamicItem[]) => IDynamicItem[];
37
- setList: React__default.Dispatch<React__default.SetStateAction<IDynamicItem[]>>;
38
- setVisible: (v: boolean) => void;
39
- updateList: (list: any) => void;
40
- resetList: () => void;
41
- }
42
-
43
- export { IDynamicItem, IDynamicSettingProps, IFilter, IRef };
@@ -1 +0,0 @@
1
- .electron-table{background-color:red}.electron-table .ant-table-tbody>tr>td:nth-child(3){padding:0}.electron-table .electron-seal-list--wrap{height:90%;height:calc(100% - 70px);margin-bottom:8px;min-height:150px;text-align:left;width:100%}.electron-table .electron-seal-list--wrap>*{font-size:13px}.electron-table .electron-seal-list--wrap .zt-collapse .ant-collapse-item .ant-collapse-content-box{padding-left:8px}.electron-table .electron-seal-list--wrap .zt-collapse .ant-collapse-header{background-color:#ebf3fe}.electron-table .electron-seal-list--wrap .ant-collapse-content-box{display:flex;flex-direction:column}.electron-table .electron-seal-list--wrap .ant-checkbox-wrapper{font-size:13px;margin-left:0}.electron-table .electron-seal--first-level-person{border-bottom:1px solid #ebebeb;margin-bottom:5px;max-height:70px;overflow:hidden;padding-left:8px;text-align:left}.electron-table .electron-seal--first-level-person .ant-checkbox-wrapper{font-size:13px;max-height:70px}.electron-table .electron-seal--first-level-person .ant-checkbox-wrapper>span:last-child{display:block;overflow:hidden;text-overflow:ellipsis}.electron-table .electron-seal-detail--wrap{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;padding:5px 0}.electron-table .electron-seal-detail--wrap .electron-seal-detail--wrap__item{margin-bottom:8px;width:100%}.electron-table .electron-seal-detail--wrap .electron-seal-detail--wrap__item:last-child{margin-bottom:2px}.electron-table .electron-seal-setting--wrap{display:flex;flex-direction:column;font-size:13px;height:100%;padding-top:10px;position:sticky;top:20px}.electron-table .electron-seal--any{font-size:13px;margin-top:6px;text-align:left}.electron-table .electron-seal--any .ant-checkbox-wrapper{font-size:13px}.electron-table .electron-seal--any .ant-checkbox-wrapper+.ant-checkbox-wrapper{margin-left:0}.electron-table .file-title{align-items:center;display:flex;justify-content:space-between}.electron-table .file-title .file-label{flex:1;text-align:center}.electron-table .file-title .file-add--isOnlyQunj,.electron-table .file-title .file-upload button{font-size:13px}.electron-table .file-title .electron-seal-setting--wrap{flex-direction:row;padding-top:0;position:relative;top:0}.electron-table .qunj-list--wrap{height:100%;min-height:150px;padding:8px 0;text-align:left;width:100%}.electron-table .qunj-list--wrap>*{font-size:13px}.electron-table .qunj-list--wrap .qunj-list--need{background:#c5cdd9;display:flex;height:36px;justify-content:space-between;line-height:36px;margin-bottom:4px;padding:0 10px;text-align:center}.electron-table .qunj-list--wrap .qunj-list--area{align-items:center;background-color:#f5f9fe;border:1px solid #cdd9e6;border-radius:4px;display:flex;height:32px;justify-content:center;margin-top:2px}.electron-table .qunj-list--wrap .qunj-list--area>label{align-items:center;display:flex;height:30px;justify-content:center;padding-left:4px}.electron-table .qunj-list--wrap .qunj-list--area>label>span{color:#ff4d4f;height:30px;margin-right:2px}.electron-table .qunj-list--wrap .qunj-list--area>.ant-select .ant-select-selector{background-color:#f5f9fe;border:none;height:30px;line-height:30px}.electron-table .qunj-list--wrap .qunj-list--area>.ant-select .ant-select-selector input{height:30px!important;line-height:30px;outline:none}.electron-table .qunj-list--wrap .qunj-list--area>.ant-select .ant-select-selector .ant-select-selection-item{height:30px!important;line-height:30px}.electron-table .qunj-list--wrap .qunj-list--title{align-items:center;border-bottom:1px solid #ebebeb;display:flex;flex-direction:row;justify-content:space-between;padding-bottom:5px}.electron-table .qunj-list--wrap .qunj-list--title .ant-radio-wrapper{font-size:13px}.electron-table .qunj-list--wrap .qunj-list--contract{text-align:right;width:110px}.electron-table .qunj-list--wrap .qunj-list--contract.count{width:130px}.electron-table .qunj-list--wrap .qunj-list--contract>span{font-size:14px}.electron-table .qunj-list--wrap .qunj-list--contract .ant-input-number{width:60px}.electron-table .qunj-list--wrap .qunj-list{margin-top:5px}.electron-table .qunj-list--wrap .qunj-list .qunj-list--item{align-items:center;display:flex;flex-direction:row;justify-content:space-between;line-height:32px}.electron-table .qunj-list--wrap .qunj-list .qunj-list--item .ant-checkbox-wrapper{flex:1;font-size:13px;line-height:22px}.electron-table .qunj-detail--wrap{height:100%;min-height:150px;padding:8px 0;text-align:left;width:100%}.electron-table .qunj-detail--wrap .qunj-detail--title{align-items:center;border-bottom:1px solid #ebebeb;display:flex;flex-direction:row;justify-content:flex-start;padding-bottom:5px}.electron-table .qunj-detail--wrap .qunj-detail--title .qunj-detail--code{background:#fcecc8;border-radius:4px;height:32px;line-height:32px;margin-right:10px;padding:0 10px;width:160px}.electron-table .qunj-detail--wrap .qunj-detail--info{border-bottom:1px solid #ebebeb;color:#888;font-size:13px;margin-bottom:5px;padding-bottom:5px}.electron-table .qunj-detail--wrap .qunj-detail--info span{color:#333}.electron-table .qunj-detail--wrap .qunj-detail--info .qunj-detail--address{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.electron-table .qunj-detail--wrap .qunj-detail--info .qunj-detail--address .qunj-detail--type{margin-right:20px}.electron-table .qunj-detail--wrap .qunj-detail--list .qunj-detail--item{align-items:center;display:flex;flex-direction:row;justify-content:space-between;line-height:28px}.electron-table .qunj-detail--wrap .qunj-detail--list .qunj-detail--item span{padding:0 4px}.electron-table .qunj-detail--wrap .qunj-detail--list .qunj-detail--item>div:first-child{flex:1;line-height:22px}.electron-table .qunj-detail--wrap .qunj-detail--list .qunj-detail--item>div:last-child{text-align:right;width:80px}.electron-table .file-add--wrap{height:100%;position:relative;width:100%}.electron-table .file-add--wrap .file-add--btn{position:sticky;top:20px}.electron-table .file-add--wrap .file-add--fragment{height:20px}.electron-table .file-operation--wrap{padding:4px}.electron-table .file-operation--wrap .file-operation--list,.electron-table .file-operation--wrap .file-operation--list>button{font-size:13px}.electron-table .file-operation--wrap .file-operation--title{margin-bottom:0}.electron-table .file-operation--wrap .file-operation--isWater .ant-checkbox-wrapper{font-size:13px}.electron-table .contract-comparison--wrap{align-items:center;display:flex;flex-direction:column;justify-content:center}.electron-table .contract-comparison--wrap .ant-checkbox-wrapper,.electron-table .contract-comparison--wrap>button{font-size:13px}.batch-download--container>span.electron-file-upload{margin-right:10px}
@@ -1,6 +0,0 @@
1
- import React__default from 'react';
2
- import { IElectronSignaturesProps } from './interface.js';
3
-
4
- declare const _default: React__default.NamedExoticComponent<IElectronSignaturesProps>;
5
-
6
- export { _default as default };
@@ -1,500 +0,0 @@
1
- import { ButtonProps } from 'antd';
2
-
3
- /** 附件的字段说明 */
4
- interface IFileFieldsName {
5
- /** 附件id */
6
- attachId: string;
7
- /** 附件名 */
8
- attachName: string;
9
- /** 上一版附件id */
10
- oldVersionId: string;
11
- /** 上一版附件名 */
12
- oldVersionName: string;
13
- /** 附件大小 bite */
14
- attachSize?: string;
15
- /** 附件类型code */
16
- attachType?: string;
17
- /** 附件类型名 */
18
- attachTypeName?: string;
19
- /** 是否存入样板 */
20
- isCustomerReference?: string;
21
- /** 模板附件id */
22
- templateAttachId?: string;
23
- /** 模板附件名 */
24
- templateAttachName?: string;
25
- /** 模板附件大小 */
26
- templateAttachSize?: string;
27
- /** 比对结果附件id */
28
- compareAttachId?: string;
29
- /** 比对结果附件名 */
30
- compareAttachName?: string;
31
- /** 比对结果附件大小 */
32
- compareAttachSize?: string;
33
- /** 是否添加水印 */
34
- isWatermark?: string;
35
- /** 是否加盖电子印章 */
36
- isElectronicSeal?: string;
37
- /** 样板号 */
38
- templateCrNo?: string;
39
- /** 外部客户产融平台电子印章 */
40
- fmsIsElectronicSeal?: string;
41
- /** 是否展示外部客户产融平台电子印章勾选框 */
42
- showFmsIsElectronicSeal?: string;
43
- showFmsIsPushBank?: string;
44
- /** 双签件 */
45
- doubleSignedSealInfoDTOList?: string;
46
- /** 是否推送银行 */
47
- fmsIsPushBank?: string;
48
- /** 是否添加群杰印章信息 */
49
- isQunj?: string;
50
- /** 群杰印章盖章地点 */
51
- qunjAddress?: string;
52
- /** 群杰印章信息 */
53
- qunjSeal?: string;
54
- /** 是否替换附件 */
55
- isReplaceFile?: number;
56
- }
57
- interface IElectronSignaturesItem {
58
- /**
59
- * 相关数据发生改变时的
60
- * 回调事件
61
- */
62
- onValueChange?: (info: {
63
- [prop: string]: IChangeValue;
64
- }) => void;
65
- /**
66
- * 附件列表
67
- */
68
- fileList?: IFileItem[];
69
- /**
70
- * 附件拆分展示规则
71
- * 需求:”同一类型“的附件,可能要按业务分开成两行显示
72
- * 开发需要根据 record 行数据 来判断当前行属于哪个key,哪个name
73
- */
74
- fileSplitRules?: (record: any) => {
75
- key: string;
76
- name: string;
77
- };
78
- /**
79
- * 附件拆分展示规则
80
- * 如果fileSplitRules 返回了一系列的key,name
81
- * 这个字段可以传入 ['key1', 'key2', 'key3'] 数据将按这种规则排序展示
82
- */
83
- fileSplitStringRules?: string[];
84
- /**
85
- * 当前附件上传时的转换
86
- */
87
- parseCurrentUploadFile?: (record: any) => any;
88
- /**
89
- * 附件字段转换规则
90
- */
91
- fileFieldsName?: IFileFieldsName;
92
- /**
93
- * 附件类型是否允许修改
94
- */
95
- isAllowedPatchFileType?: boolean;
96
- /**
97
- * 附件类型字典key值
98
- */
99
- fileTypeKey?: string;
100
- /**
101
- * 附件类型 需要排除显示的一些字段
102
- */
103
- fileTypeFilterList?: string[];
104
- /**
105
- * 是否使用外部传入的附件类型列表
106
- */
107
- useOutsideFileTypeList?: boolean;
108
- /**
109
- * 附件类型展示字段 如果传了这个 那么以这个的值优先
110
- */
111
- fileTypeList?: any;
112
- /**
113
- * 数据类型(相同类型的数据 会合并起来)
114
- * 类似指定附件归属的key 一个数据归属是一份数据
115
- */
116
- dataType?: string;
117
- /**
118
- * 数据类型的名称 用户指定附件归属的展示名称
119
- */
120
- dataTypeName?: string;
121
- /**
122
- * 附件归属是否增加底色
123
- */
124
- isBgColor?: boolean;
125
- /**
126
- * 是否可以编辑
127
- * 1 可以编辑
128
- * 0 不可编辑
129
- */
130
- canEdit?: number;
131
- /**
132
- * 是否需要显示达观合同比对功能
133
- * 1 显示
134
- * 0 隐藏
135
- */
136
- needDg?: number;
137
- /**
138
- * 判断是否显示达观相关组件
139
- * 业务那边有这种判断 只有附加类型是合同本身时 才显示模板比对功能
140
- */
141
- isShowContractComparsion?: (record: any, records?: any[]) => boolean;
142
- /**
143
- * 是否显示群杰印章 盖物理章使用
144
- * 1 显示
145
- * 0 隐藏
146
- */
147
- needQj?: number;
148
- /**
149
- * 默认是否勾选群杰印章-用印申请
150
- */
151
- isDefaultQunj?: boolean;
152
- /**
153
- * 群杰印章盖章地点 下拉列表
154
- */
155
- qunjAddressList?: any;
156
- /**
157
- * 是否显示群杰印章盖章地点
158
- */
159
- isQunjAddress?: boolean;
160
- /**
161
- * 当前选中的群杰印章盖章地址
162
- */
163
- qunjAddress?: any;
164
- /**
165
- * 是否显示契约锁电子印章 盖电子章使用
166
- * 1 显示
167
- * 0 隐藏
168
- */
169
- needQys?: number;
170
- /**
171
- * 已选中的电子印章
172
- * 回显时使用
173
- */
174
- electronicSealIdList?: string[];
175
- /** 已选中群杰印章列表 */
176
- qunjSeal?: IQunjProps;
177
- /**
178
- * 已经盖过章的附件id
179
- * 其实这个应该是可以通过 docAttachMap 这个数据来取到已经盖了章子的附件
180
- * 用于校验上传的附件是新增还是删除,组件返回这个参数,需要保存,下次调用组件时传入
181
- */
182
- checkAttachIdList?: string[];
183
- /**
184
- * 是否默认勾选经济责任人 1为默认勾选 0为不勾选
185
- */
186
- isCheckedEconomic?: number;
187
- /** 合同id */
188
- contractId?: string;
189
- /**
190
- * 后台用于维护 当前合同id下 附件id(key)与文档id(value)的关系map 后台解绑文档时使用
191
- */
192
- docAttachMap?: any;
193
- /**
194
- * 流程ID 这类流程的一个Key值 加上部门id一起 获取当前的电子印章列表
195
- */
196
- flowId?: string;
197
- /**
198
- * 流程状态 15 审批中 50 审批完成
199
- */
200
- flowStatus?: any;
201
- /**
202
- * 部门ID
203
- */
204
- deptId?: string;
205
- /**
206
- * 文档id列表
207
- */
208
- documentIdList?: string[];
209
- /**
210
- * 点击挑选比对合同 触发事件
211
- */
212
- onCheckedComparison?: (info: any) => void;
213
- /**
214
- * 是否显示保存为模板
215
- */
216
- isShowSaveTemplate?: boolean;
217
- /**
218
- * 是否显示选择比对模板
219
- */
220
- isShowChioseTemplate?: boolean;
221
- /**
222
- * 公司类型传参,过滤群杰印章列表
223
- */
224
- companyTypes?: string;
225
- }
226
- interface IElectronSignaturesItemPublic {
227
- /**
228
- * 请求方法
229
- */
230
- request?: any;
231
- /**
232
- * 是否开启非受控模式
233
- * 一般情况下 非受控模式不传入value即可。如果要显示默认值也可以传入defaultValue
234
- * 但是这个组件的信息过多,这里可以通过传入一个属性控制是否是非受控
235
- * 非受控的性能往往更好 我们只需要在合适的时机调用组件提供的方法 获取值即可
236
- */
237
- isUnControlled?: boolean;
238
- /**
239
- * 需要显示合同份数的流程id列表
240
- * 群杰物理章那里 是否需要计算每个印章的用印次数 不能大于合同总份数的 多少倍
241
- */
242
- contractNumFlowIds?: string[];
243
- /**
244
- * 上传附件的一些公用配置
245
- */
246
- fileUploadProps?: IFileUploadProps;
247
- /**
248
- * 群杰印章是否每个文件都需要选择对应的印章
249
- */
250
- isSingleQj?: boolean;
251
- /**
252
- * 默认不显示群杰印章列表,点击 用印时 才弹框显示
253
- * 默认按这个模式展示
254
- */
255
- isQjUseModal?: boolean;
256
- /**
257
- * 当点击仅需要群杰印章时,是否需要删除所有附件信息?
258
- * 默认不删除
259
- */
260
- isDeleteAllFileWhenJustUseQj?: boolean;
261
- /**
262
- * 当传入了不需要契约锁时,是否显示契约锁列信息
263
- * 默认也显示
264
- */
265
- isShowQysWhenNeedNotQys?: boolean;
266
- /**
267
- * 是否需要契约锁是否由组件内部控制
268
- * 默认是 true
269
- * @example 当外部明确知道这个流程不需要契约锁时(切换仅需要群杰、使用契约锁按钮不显示),传递的needQys是0
270
- * 需要传递这个属性为 false
271
- * 这个时候。不会显示切换契约锁显示隐藏的按钮
272
- */
273
- isControlNeedQys?: boolean;
274
- /**
275
- * 默认是否仅显示群杰印章
276
- * 默认是false
277
- * @example 如果默认不需要契约锁。但是允许切换显示隐藏
278
- * 需要传递这个属性 为 true
279
- * 这个时候,默认不会显示契约锁,但是可以切换显示隐藏显示出来
280
- * 当然前提是 isControlNeedQys没有配置false
281
- */
282
- defaultJustNeedQj?: boolean;
283
- /**
284
- * 是否显示附件归属列
285
- */
286
- isShowFileTypeMerge?: boolean;
287
- /**
288
- * 是否显示上传附件按钮
289
- */
290
- isShowFileUpload?: boolean;
291
- /**
292
- * 是否显示批量下载附件原件按钮
293
- */
294
- isShowDownloadBatchBtn?: boolean;
295
- /**
296
- * 是否显示批量删除按钮
297
- */
298
- isShowBatchDeleteBtn?: boolean;
299
- /**
300
- * 批量下载原件的zip包名
301
- */
302
- batchDownloadZipName?: string;
303
- /**
304
- * 是否显示批量下载电子签章件按钮
305
- */
306
- isShowElectronBatchBtn?: boolean;
307
- /**
308
- * 是否显示批量下载双签件
309
- */
310
- isShowDoubleSignedBatchBtn?: boolean;
311
- /**
312
- * 基地址
313
- */
314
- apiBaseUrl?: string;
315
- /**
316
- * 附件服务器基地址
317
- */
318
- fileBaseUrl?: string;
319
- /**
320
- * 需要盖外部客户电子章吗?如果需要的话 可以更改这个文本内容
321
- */
322
- fmsIsElectronicSealLabel?: string;
323
- /**
324
- * 需要推送银行妈?如果需要的话 可以更改这个文本内容
325
- */
326
- fmsIsElectronicSealPushLabel?: string;
327
- /** 是否显示附件类型 */
328
- isShowFileType?: boolean;
329
- /**
330
- * 附件类型发生改变时触发的方法
331
- */
332
- onFileTypeChangeGetItem?: (info: any) => any;
333
- /**
334
- * 上传时间取值
335
- */
336
- getCreateTimeHand?: (record: any) => any;
337
- /**
338
- * 占位符附件数据是否需要删除
339
- */
340
- isDeletePlaceholderFileData?: boolean;
341
- /**
342
- * 当前办理事项id????? 外部传入的 暂时没看到从哪里获取到的
343
- */
344
- caseId?: string;
345
- }
346
- interface IElectronSignaturesProps extends IElectronSignaturesItem, IElectronSignaturesItemPublic {
347
- /**
348
- * 多余配置
349
- */
350
- otherOptions?: IElectronSignaturesItem | IElectronSignaturesItem[];
351
- /**
352
- * 组件暴露给外部的方法
353
- */
354
- electronHandleRef?: any;
355
- /**
356
- * 最终校验通过的回调
357
- */
358
- isValidateSuccess?: any;
359
- /** 刷新验证码权限 */
360
- refreshCode?: boolean;
361
- /**
362
- * 表格的scroll配置
363
- */
364
- tableScroll?: any;
365
- }
366
- /**
367
- * 群杰选中数据相关类型
368
- */
369
- interface IQunjProps {
370
- /**
371
- * 群杰验证码
372
- */
373
- code?: string;
374
- /**
375
- * 群杰验证码
376
- */
377
- vertifyCode?: number;
378
- /**
379
- * 合同份数
380
- */
381
- contranctNum?: number | null;
382
- /**
383
- * 用印方式 0 内部用印 1 外部用印
384
- */
385
- isTakeOut?: number;
386
- /** 已选印章 */
387
- details?: ICheckQunjItemProps[];
388
- }
389
- /**
390
- * 已选中的印章数据类型
391
- */
392
- interface ICheckQunjItemProps {
393
- /** 印章名称 */
394
- sealName?: string;
395
- /** 印章编码 */
396
- sealNo: string;
397
- /** 该印章的用印次数 */
398
- sealCount?: number;
399
- /** 暂时不知道什么意思 可能是后台用于区别的类型 */
400
- areaType?: number;
401
- [prop: string]: any;
402
- }
403
- /** 回调触发的类型 */
404
- interface IChangeValue {
405
- /** 当前选中的电子印章列表 */
406
- electronicSealIdList?: string[];
407
- /**
408
- * 点击指定签署位置后 记录一次当前选中的电子印章数据
409
- * 后续做校验的时候 需要比对一下 点击时 跟当前选中时的电子印章是否一致
410
- */
411
- clickElectronicSealIdList?: string[];
412
- /** 经济责任人是否选中 */
413
- isCheckedEconomic?: boolean;
414
- /** 合同ID */
415
- contractId?: IElectronSignaturesItem['contractId'];
416
- /** 后台用于维护当前合同id下附件id(key)与文档id(value)的关系map 后台解绑文档时使用 */
417
- docAttachMap?: IElectronSignaturesItem['docAttachMap'];
418
- /** 文档id 列表 */
419
- documentIdList?: IElectronSignaturesItem['documentIdList'];
420
- /** 当前盖过章的附件列表 */
421
- checkAttachIdList?: IElectronSignaturesItem['checkAttachIdList'];
422
- fileList?: any;
423
- /** 当前群杰印章相关数据 */
424
- qunjSeal?: IElectronSignaturesItem['qunjSeal'];
425
- /** 当前群杰盖章地点发生改变 */
426
- qunjAddress?: IElectronSignaturesItem['qunjAddress'];
427
- /** 合同份数是否合理 */
428
- qunjCountIsValidate?: boolean;
429
- }
430
- interface IFileItem {
431
- /** 附件id */
432
- attachId: string;
433
- /** 附件名 */
434
- attachName: string;
435
- /** 附件大小 bite */
436
- attachSize?: number;
437
- /** 附件类型code */
438
- attachType?: string;
439
- /** 附件类型名 */
440
- attachTypeName?: string;
441
- /** 是否存入样板 */
442
- isCustomerReference?: number;
443
- /** 是否显示保存为模板 */
444
- isHideSaveCustomerReference?: boolean;
445
- /** 是否显示选择比对模板 */
446
- isHideChoiseChangeTemplate?: boolean;
447
- /** 模板附件id */
448
- templateAttachId?: string;
449
- /** 模板附件名 */
450
- templateAttachName?: string;
451
- /** 模板附件大小 */
452
- templateAttachSize?: string;
453
- /** 比对结果附件id */
454
- compareAttachId?: string;
455
- /** 比对结果附件名 */
456
- compareAttachName?: string;
457
- /** 比对结果附件大小 */
458
- compareAttachSize?: string;
459
- /** 是否添加水印 */
460
- isWatermark?: number;
461
- /** 是否加盖电子印章 */
462
- isElectronicSeal?: number;
463
- /** 样板号 */
464
- templateCrNo?: string;
465
- /** 外部客户产融平台电子印章 */
466
- fmsIsElectronicSeal?: any;
467
- /** 是否展示外部客户产融平台电子印章勾选框 */
468
- showFmsIsElectronicSeal?: any;
469
- /** 双签件 */
470
- doubleSignedSealInfoDTOList?: any;
471
- [prop: string]: any;
472
- }
473
- interface IFileUploadProps {
474
- /** 上传地址 */
475
- action?: string;
476
- /** 最大支持上传的文件大小 单位字节 */
477
- maxSize?: number;
478
- /** 基地址 */
479
- apiBaseUrl?: string;
480
- /** 需要传递的头部参数 */
481
- headers?: any;
482
- /** 需要传递的额外参数 */
483
- data?: any;
484
- /** 是否上传到外网 */
485
- isPublic?: boolean;
486
- /** 附件上传需要支持的附件列表 */
487
- acceptList?: string[];
488
- /** 自定义上传前验证 */
489
- beforeUpload?: any;
490
- /** 不允许同名附件 */
491
- disAllowDuplicateFile?: boolean;
492
- fileList?: any;
493
- /** 附件发生改变时触发 */
494
- onFileChange?: any;
495
- children?: React.ReactNode;
496
- multiple?: boolean;
497
- type?: ButtonProps['type'];
498
- }
499
-
500
- export { IChangeValue, ICheckQunjItemProps, IElectronSignaturesItem, IElectronSignaturesItemPublic, IElectronSignaturesProps, IFileFieldsName, IFileItem, IFileUploadProps, IQunjProps };
@@ -1,6 +0,0 @@
1
- import React__default from 'react';
2
- import { IEnhanceSelectProps } from './interface.js';
3
-
4
- declare const MemoEnhanceSelect: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<IEnhanceSelectProps & React__default.RefAttributes<unknown>>>;
5
-
6
- export { MemoEnhanceSelect as default };