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,331 +0,0 @@
1
- .electron-table {
2
- background-color: red;
3
- .ant-table-tbody > tr > td:nth-child(3) {
4
- padding: 0;
5
- }
6
- .electron-seal-list--wrap {
7
- text-align: left;
8
- width: 100%;
9
- height: 90%;
10
- height: calc(100% - 70px);
11
- margin-bottom: 8px;
12
- min-height: 150px;
13
- > * {
14
- font-size: 13px;
15
- }
16
- .zt-collapse {
17
- .ant-collapse-item .ant-collapse-content-box {
18
- padding-left: 8px;
19
- }
20
- .ant-collapse-header {
21
- background-color: rgb(235, 243, 254);
22
- }
23
- }
24
- .ant-collapse-content-box {
25
- display: flex;
26
- flex-direction: column;
27
- }
28
- .ant-checkbox-wrapper {
29
- font-size: 13px;
30
- margin-left: 0;
31
- }
32
- }
33
- .electron-seal--first-level-person {
34
- // height: 36px;
35
- max-height: 70px;
36
- // line-height: 36px;
37
- border-bottom: 1px solid #ebebeb;
38
- margin-bottom: 5px;
39
- overflow: hidden;
40
- text-align: left;
41
- padding-left: 8px;
42
- .ant-checkbox-wrapper {
43
- font-size: 13px;
44
- max-height: 70px;
45
- // height: 36px;
46
- // line-height: 36px;
47
- > span:last-child {
48
- display: block;
49
- overflow: hidden;
50
- text-overflow: ellipsis;
51
- // 显示补全加盖经济责任人手签章
52
- // white-space: nowrap;
53
- // max-width: 260px;
54
- }
55
- }
56
- }
57
-
58
- .electron-seal-detail--wrap {
59
- // text-align: left;
60
- height: 100%;
61
- display: flex;
62
- align-items: center;
63
- justify-content: center;
64
- flex-direction: column;
65
- padding: 5px 0;
66
- .electron-seal-detail--wrap__item {
67
- margin-bottom: 8px;
68
- width: 100%;
69
- &:last-child {
70
- margin-bottom: 2px;
71
- }
72
- }
73
- }
74
-
75
- .electron-seal-setting--wrap {
76
- font-size: 13px;
77
- height: 100%;
78
- padding-top: 10px;
79
- display: flex;
80
- flex-direction: column;
81
- position: sticky;
82
- top: 20px;
83
- }
84
- .electron-seal--any {
85
- font-size: 13px;
86
- margin-top: 6px;
87
- text-align: left;
88
- .ant-checkbox-wrapper {
89
- font-size: 13px;
90
- + .ant-checkbox-wrapper {
91
- margin-left: 0;
92
- }
93
- }
94
- }
95
-
96
- .file-title {
97
- display: flex;
98
- align-items: center;
99
- justify-content: space-between;
100
- .file-label {
101
- text-align: center;
102
- flex: 1;
103
- }
104
- .file-add--isOnlyQunj {
105
- font-size: 13px;
106
- }
107
- .file-upload {
108
- button {
109
- font-size: 13px;
110
- }
111
- }
112
- .electron-seal-setting--wrap {
113
- flex-direction: row;
114
- top: 0;
115
- position: relative;
116
- padding-top: 0;
117
- }
118
- }
119
-
120
- // 群杰相关样式
121
- .qunj-list--wrap {
122
- text-align: left;
123
- width: 100%;
124
- padding: 8px 0;
125
- height: 100%;
126
- min-height: 150px;
127
- > * {
128
- font-size: 13px;
129
- }
130
- .qunj-list--need {
131
- text-align: center;
132
- height: 36px;
133
- line-height: 36px;
134
- background: #c5cdd9;
135
- display: flex;
136
- justify-content: space-between;
137
- padding: 0 10px;
138
- margin-bottom: 4px;
139
- }
140
- .qunj-list--area {
141
- height: 32px;
142
- margin-top: 2px;
143
- display: flex;
144
- align-items: center;
145
- justify-content: center;
146
- background-color: rgb(245, 249, 254);
147
- border: 1px solid rgb(205, 217, 230);
148
- border-radius: 4px;
149
- > label {
150
- padding-left: 4px;
151
- display: flex;
152
- height: 30px;
153
- align-items: center;
154
- justify-content: center;
155
- > span {
156
- height: 30px;
157
- color: rgb(255, 77, 79);
158
- margin-right: 2px;
159
- }
160
- }
161
- > .ant-select .ant-select-selector {
162
- height: 30px;
163
- line-height: 30px;
164
- border: none;
165
- background-color: rgb(245, 249, 254);
166
- input {
167
- height: 30px !important;
168
- line-height: 30px;
169
- outline: none;
170
- }
171
- .ant-select-selection-item {
172
- height: 30px !important;
173
- line-height: 30px;
174
- }
175
- }
176
- }
177
- .qunj-list--title {
178
- display: flex;
179
- flex-direction: row;
180
- justify-content: space-between;
181
- align-items: center;
182
- border-bottom: 1px solid rgb(235, 235, 235);
183
- padding-bottom: 5px;
184
- .ant-radio-wrapper {
185
- font-size: 13px;
186
- }
187
- }
188
- .qunj-list--contract {
189
- &.count {
190
- width: 130px;
191
- }
192
- width: 110px;
193
- text-align: right;
194
- > span {
195
- font-size: 14px;
196
- }
197
- .ant-input-number {
198
- width: 60px;
199
- }
200
- }
201
- .qunj-list {
202
- margin-top: 5px;
203
- .qunj-list--item {
204
- display: flex;
205
- flex-direction: row;
206
- justify-content: space-between;
207
- align-items: center;
208
- line-height: 32px;
209
- .ant-checkbox-wrapper {
210
- font-size: 13px;
211
- line-height: 22px;
212
- flex: 1;
213
- }
214
- }
215
- }
216
- }
217
-
218
- .qunj-detail--wrap {
219
- text-align: left;
220
- width: 100%;
221
- padding: 8px 0;
222
- height: 100%;
223
- min-height: 150px;
224
- .qunj-detail--title {
225
- display: flex;
226
- flex-direction: row;
227
- justify-content: flex-start;
228
- align-items: center;
229
- border-bottom: 1px solid rgb(235, 235, 235);
230
- padding-bottom: 5px;
231
- .qunj-detail--code {
232
- width: 160px;
233
- height: 32px;
234
- background: rgb(252, 236, 200);
235
- border-radius: 4px;
236
- padding: 0px 10px;
237
- line-height: 32px;
238
- margin-right: 10px;
239
- }
240
- }
241
- .qunj-detail--info {
242
- border-bottom: 1px solid rgb(235, 235, 235);
243
- padding-bottom: 5px;
244
- margin-bottom: 5px;
245
- font-size: 13px;
246
- color: rgb(136, 136, 136);
247
- span {
248
- color: #333;
249
- }
250
- .qunj-detail--address {
251
- display: flex;
252
- flex-direction: row;
253
- justify-content: flex-start;
254
- align-items: center;
255
- .qunj-detail--type {
256
- margin-right: 20px;
257
- }
258
- }
259
- }
260
- .qunj-detail--list {
261
- .qunj-detail--item {
262
- display: flex;
263
- flex-direction: row;
264
- justify-content: space-between;
265
- align-items: center;
266
- line-height: 28px;
267
- span {
268
- padding: 0 4px;
269
- }
270
- > div:first-child {
271
- flex: 1;
272
- line-height: 22px;
273
- }
274
- > div:last-child {
275
- width: 80px;
276
- text-align: right;
277
- }
278
- }
279
- }
280
- }
281
-
282
- .file-add--wrap {
283
- width: 100%;
284
- height: 100%;
285
- position: relative;
286
- .file-add--btn {
287
- position: sticky;
288
- top: 20px;
289
- }
290
- .file-add--fragment {
291
- height: 20px;
292
- }
293
- }
294
-
295
- .file-operation--wrap {
296
- padding: 4px;
297
- .file-operation--list {
298
- font-size: 13px;
299
- > button {
300
- font-size: 13px;
301
- }
302
- }
303
- .file-operation--title {
304
- margin-bottom: 0;
305
- }
306
- .file-operation--isWater {
307
- .ant-checkbox-wrapper {
308
- font-size: 13px;
309
- }
310
- }
311
- }
312
-
313
- .contract-comparison--wrap {
314
- display: flex;
315
- align-items: center;
316
- justify-content: center;
317
- flex-direction: column;
318
- > button {
319
- font-size: 13px;
320
- }
321
- .ant-checkbox-wrapper {
322
- font-size: 13px;
323
- }
324
- }
325
- }
326
-
327
- .batch-download--container {
328
- > span.electron-file-upload {
329
- margin-right: 10px;
330
- }
331
- }
@@ -1 +0,0 @@
1
- @import "./index.less";
@@ -1,28 +0,0 @@
1
- .ztxk-footer {
2
- background-color: @bg-white;
3
- height: @footer-height;
4
- display: flex;
5
- align-items: center;
6
- padding-left: 10px;
7
- z-index: 20;
8
- .ztxk-footer--group {
9
- display: flex;
10
- align-items: center;
11
- .ztxk-pagination {
12
- margin-right: @margin-base;
13
- }
14
- > button {
15
- margin-right: @margin-base;
16
- &:last-child {
17
- margin-right: 0;
18
- }
19
- }
20
- }
21
- .footer-pagination {
22
- color: @text-color;
23
- > span {
24
- color: @link-color;
25
- padding: 0 2px;
26
- }
27
- }
28
- }
@@ -1,2 +0,0 @@
1
- @import "../../../styles/default.less";
2
- @import "./index.less";
@@ -1,150 +0,0 @@
1
- .ztxk-form {
2
- display: flex;
3
- justify-content: space-between;
4
- background: rgb(255, 255, 255);
5
- padding: 0;
6
- .ztxk-form--detault-dom {
7
- border-radius: 0px 4px 4px 0px;
8
- min-height: 32px;
9
- transition: all 0.3s;
10
- border: 1px solid #d9d9d9;
11
- border-left: none;
12
- display: flex;
13
- align-items: center;
14
- padding: 4px 11px;
15
- }
16
- .ztxk-form--tip-dom {
17
- border-radius: 0px 4px 4px 0px;
18
- min-height: 32px;
19
- transition: all 0.3s;
20
- display: flex;
21
- align-items: center;
22
- padding: 4px 11px;
23
- }
24
-
25
- // 如果是背景模式
26
- // &.ztxk-form--list {
27
- // .ztxk-form__item--wrap {
28
- // padding-bottom: 0;
29
- // padding-right: 0;
30
- // .ant-form-item .ant-form-item-label {
31
- // border-radius: 0;
32
- // }
33
- // .ant-form-item * {
34
- // border-radius: 0;
35
- // }
36
- // }
37
- // }
38
-
39
- // 底部边框
40
- &.ztxk-form--bottom-border {
41
- border-bottom: 1px solid @col-head-bg;
42
- }
43
-
44
- // 左侧容器样式
45
- .ztxk-form__left {
46
- flex: 1;
47
- position: relative;
48
- // 超出隐藏移动到toggle样式中,因为在编辑页时,下拉框的一个简单的做法是直接挂载到当前下拉框容器中,这样滚动页面时,下拉区域会随着滚动
49
- // overflow: hidden;
50
- transition: max-height 0.3s ease-out;
51
- // 切换容器高度
52
- &.ztxk-form__left--toggle {
53
- overflow: hidden;
54
- }
55
- &.ztxk-form__left--flex {
56
- display: flex;
57
- flex-wrap: wrap;
58
- flex-grow: 1;
59
- .ant-form-item-has-error {
60
- &.ztxk-form__item--direction-column {
61
- border-color: #ff8888 !important;
62
- }
63
- .ant-form-item-label,
64
- .ant-form-item-label label {
65
- border-color: #ff8888 !important;
66
- }
67
- .ant-select-selector {
68
- border-color: #ff8888 !important;
69
- }
70
- .ant-picker {
71
- border-color: #ff8888 !important;
72
- }
73
- .ant-input,
74
- .ant-input-affix-wrapper {
75
- border-color: #ff8888 !important;
76
- }
77
- .city-picker-span {
78
- border-color: #ff8888 !important;
79
- }
80
- .ant-radio-group,
81
- .ant-checkbox-group {
82
- border-color: #ff8888 !important;
83
- }
84
- &:hover {
85
- .ant-form-item-label,
86
- .ant-form-item-label label {
87
- border-color: #ff8888 !important;
88
- }
89
- .ant-select-selector {
90
- border-color: #ff8888 !important;
91
- }
92
- .ant-picker {
93
- border-color: #ff8888 !important;
94
- }
95
- .ant-input,
96
- .ant-input-affix-wrapper {
97
- border-color: #ff8888 !important;
98
- }
99
- .city-picker-span {
100
- border-color: #ff8888 !important;
101
- }
102
- .ztxk-form--detault-dom {
103
- border-color: #ff8888 !important;
104
- }
105
- }
106
- .ant-form-item-margin-offset {
107
- margin-bottom: 0 !important;
108
- }
109
- }
110
- }
111
- &.ztxk-form__left--flex-direction {
112
- flex-direction: column;
113
- > div {
114
- flex: none;
115
- }
116
- }
117
- }
118
-
119
- // 中间配置容器
120
- .ztxk-form--operation {
121
- display: flex;
122
- flex-direction: column;
123
- align-items: center;
124
- margin-right: 10px;
125
- .ztxk-dynamic-setting {
126
- position: relative;
127
- cursor: pointer;
128
- margin-top: 6px;
129
- }
130
- .ztxk-from--toggle {
131
- cursor: pointer;
132
- margin-top: 4px;
133
- > span {
134
- transition: transform 0.4s ease 0s;
135
- }
136
- }
137
- }
138
-
139
- // 右侧容器
140
- .ztxk-form__right {
141
- display: flex;
142
- > button.ant-btn {
143
- margin-left: 10px;
144
- margin-right: 0;
145
- &:first-child {
146
- margin-left: 0;
147
- }
148
- }
149
- }
150
- }
@@ -1,5 +0,0 @@
1
- // 包含antd form 和 自定义样式
2
- @import "antd/lib/form/style/index.less";
3
-
4
- @import "../../../styles/default.less";
5
- @import "./index.less";