ztxkui 4.2.18-9 → 4.2.18-91
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/App.js +315 -291
- package/dist/Demo.js +58 -42
- package/dist/DemoCom/BasicDemo.js +57 -56
- package/dist/DemoCom/CodeQueryDemo.js +3 -2
- package/dist/DemoCom/CollapseDemo.js +28 -27
- package/dist/DemoCom/DragSort.js +11 -10
- package/dist/DemoCom/FormDemo.js +36 -30
- package/dist/DemoCom/PrintContainerDemo.js +151 -150
- package/dist/DemoCom/PrintDemo.js +15 -14
- package/dist/DemoCom/SinaturesDemo.js +9 -8
- package/dist/DemoCom/SyhDemo.js +21 -20
- package/dist/DemoCom/TableAnalyse.js +34 -33
- package/dist/DemoCom/TableDemo.js +74 -70
- package/dist/DemoCom/TableDemo1.js +34 -33
- package/dist/DemoCom/TableDetail.d.ts +9 -0
- package/dist/DemoCom/TableDetail.js +259 -0
- package/dist/DemoCom/TestCom.js +22 -19
- package/dist/DemoCom/data.d.ts +110 -0
- package/dist/DemoCom/data.js +2308 -0
- package/dist/TableDemo/BasicTable.js +103 -29
- package/dist/TableDemo/EditableTable.js +177 -91
- package/dist/TableDemo/ModalTable.js +25 -24
- package/dist/TableDemo/ProEditableTable.d.ts +21 -0
- package/dist/TableDemo/ProEditableTable.js +483 -0
- package/dist/TableDemo/data.d.ts +15 -0
- package/dist/TableDemo/data.js +44 -11
- package/dist/TableDemo/index.js +5 -4
- package/dist/TreeDemo.js +8 -7
- package/dist/TreeSelectDemo.js +10 -7
- package/dist/UI/Form/index.d.ts +3 -0
- package/dist/UI/Form/index.js +346 -0
- package/dist/UI/index.d.ts +2 -0
- package/dist/UI/index.js +10 -0
- package/dist/UploadDemo.js +12 -17
- package/dist/components/Button/button.js +3 -2
- package/dist/components/Collapse/collapse.js +2 -1
- package/dist/components/EnhanceSelect/index.d.ts +5 -1
- package/dist/components/EnhanceSelect/index.js +179 -32
- package/dist/components/EnhanceTree/index.js +4 -3
- package/dist/components/EnhanceTreeSelect/index.js +11 -5
- package/dist/components/Export/export.js +5 -4
- package/dist/components/Input/input.d.ts +3 -0
- package/dist/components/Input/input.js +53 -3
- package/dist/components/InputNumber/input-number.js +3 -2
- package/dist/components/NumberCase/index.js +9 -7
- package/dist/components/Print/print.js +4 -3
- package/dist/components/PrintContainer/AttachPreviewModal.js +3 -2
- package/dist/components/PrintContainer/PrintModal.js +4 -3
- package/dist/components/PrintContainer/handle.d.ts +2 -4
- package/dist/components/PrintContainer/handle.js +3 -2
- package/dist/components/PrintContainer/lodop.js +2 -1
- package/dist/components/PrintContainer/print-container.js +74 -73
- package/dist/components/PrintContainer/service.js +5 -4
- package/dist/components/ProForm/hooks.d.ts +23 -0
- package/dist/components/ProForm/hooks.js +209 -0
- package/dist/components/ProForm/index.d.ts +6 -0
- package/dist/components/ProForm/index.js +101 -0
- package/dist/components/ProForm/interface.d.ts +169 -0
- package/dist/components/ProForm/interface.js +1 -0
- package/dist/components/ProForm/item.d.ts +13 -0
- package/dist/components/ProForm/item.js +221 -0
- package/dist/components/ProForm/items.d.ts +5 -0
- package/dist/components/ProForm/items.js +36 -0
- package/dist/components/ProForm/search-drawer.d.ts +12 -0
- package/dist/components/ProForm/search-drawer.js +202 -0
- package/dist/components/ProForm/setting.d.ts +5 -0
- package/dist/components/ProForm/setting.js +13 -0
- package/dist/components/ProFormList/index.d.ts +12 -0
- package/dist/components/ProFormList/index.js +34 -0
- package/dist/components/ProTable/hooks.d.ts +28 -0
- package/dist/components/ProTable/hooks.js +279 -0
- package/dist/components/ProTable/index.d.ts +8 -0
- package/dist/components/ProTable/index.js +77 -0
- package/dist/components/ProTable/interface.d.ts +51 -0
- package/dist/components/ProTable/interface.js +1 -0
- package/dist/components/RangePicker/range-picker.js +5 -2
- package/dist/components/SortableCancel/sortable-cancel.d.ts +1 -0
- package/dist/components/SortableCancel/sortable-cancel.js +2 -2
- package/dist/components/Table/components/FillDown.d.ts +8 -0
- package/dist/components/Table/components/FillDown.js +11 -0
- package/dist/components/Table/components/FilterDropdown.d.ts +15 -0
- package/dist/components/Table/components/FilterDropdown.js +93 -0
- package/dist/components/Table/constants.d.ts +2 -0
- package/dist/components/Table/constants.js +2 -0
- package/dist/components/Table/hooks/useColumns.d.ts +25 -8
- package/dist/components/Table/hooks/useColumns.js +704 -180
- package/dist/components/Table/hooks/useDropRef.js +4 -2
- package/dist/components/Table/hooks/useInnerPagination.js +1 -0
- package/dist/components/Table/hooks/useSelectSubtotal.d.ts +4 -0
- package/dist/components/Table/hooks/useSelectSubtotal.js +182 -0
- package/dist/components/Table/hooks/useVituralScrollBar.d.ts +10 -0
- package/dist/components/Table/hooks/useVituralScrollBar.js +234 -0
- package/dist/components/Table/index.d.ts +11 -0
- package/dist/components/Table/table-adddel-column.d.ts +8 -5
- package/dist/components/Table/table-adddel-column.js +16 -5
- package/dist/components/Table/table-dynamic.js +165 -18
- package/dist/components/Table/table-enhance-cell.d.ts +7 -3
- package/dist/components/Table/table-enhance-cell.js +214 -109
- package/dist/components/Table/table-enhance-row.d.ts +4 -4
- package/dist/components/Table/table-enhance-row.js +10 -11
- package/dist/components/Table/table-headTooltip.d.ts +6 -0
- package/dist/components/Table/table-headTooltip.js +13 -0
- package/dist/components/Table/table-resizable-title.d.ts +4 -5
- package/dist/components/Table/table-resizable-title.js +33 -6
- package/dist/components/Table/table-sort.d.ts +11 -0
- package/dist/components/Table/table-sort.js +66 -0
- package/dist/components/Table/table.d.ts +30 -4
- package/dist/components/Table/table.js +526 -180
- package/dist/components/Table/utils/dom.d.ts +26 -0
- package/dist/components/Table/utils/dom.js +123 -0
- package/dist/components/Table/utils/filterHandle.d.ts +1 -0
- package/dist/components/Table/utils/filterHandle.js +66 -0
- package/dist/components/Table/utils/getSummaryData.d.ts +2 -1
- package/dist/components/Table/utils/getSummaryData.js +282 -25
- package/dist/components/Table/utils/shallowEqual.d.ts +2 -0
- package/dist/components/Table/utils/shallowEqual.js +35 -0
- package/dist/components/Table/utils/validate.d.ts +1 -1
- package/dist/components/Table/utils/validate.js +30 -11
- package/dist/components/TreeSelect/index.d.ts +15 -0
- package/dist/components/TreeSelect/index.js +29 -0
- package/dist/components/Upload/upload-table.js +31 -26
- package/dist/components/Upload/upload.js +23 -18
- package/dist/components/Upload/utils.js +11 -10
- package/dist/components/UploadSingle/upload-single.js +5 -4
- package/dist/components/Watermark/index.d.ts +2 -0
- package/dist/components/Watermark/index.js +2 -0
- package/dist/components/Watermark/interface.d.ts +20 -0
- package/dist/components/Watermark/interface.js +1 -0
- package/dist/components/Watermark/utils.d.ts +1 -0
- package/dist/components/Watermark/utils.js +70 -0
- package/dist/components/Watermark/water.d.ts +50 -0
- package/dist/components/Watermark/water.js +66 -0
- package/dist/components/Watermark/watermark-div.d.ts +4 -0
- package/dist/components/Watermark/watermark-div.js +41 -0
- package/dist/components/Watermark/watermark-shadow.d.ts +6 -0
- package/dist/components/Watermark/watermark-shadow.js +116 -0
- package/dist/components/Watermark/watermark.d.ts +3 -0
- package/dist/components/Watermark/watermark.js +102 -0
- package/dist/components/WorkflowPrintContainer/component/Gragh/Gragh.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/Gragh/Gragh.js +63 -0
- package/dist/components/WorkflowPrintContainer/component/Header.d.ts +12 -0
- package/dist/components/WorkflowPrintContainer/component/Header.js +109 -0
- package/dist/components/WorkflowPrintContainer/component/ProcessDetail.d.ts +18 -0
- package/dist/components/WorkflowPrintContainer/component/ProcessDetail.js +243 -0
- package/dist/components/WorkflowPrintContainer/component/Upload/index.d.ts +20 -0
- package/dist/components/WorkflowPrintContainer/component/Upload/index.js +59 -0
- package/dist/components/WorkflowPrintContainer/component/association/component/TableList.d.ts +10 -0
- package/dist/components/WorkflowPrintContainer/component/association/component/TableList.js +75 -0
- package/dist/components/WorkflowPrintContainer/component/association/index.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/association/index.js +92 -0
- package/dist/components/WorkflowPrintContainer/component/attention/component/TableList.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/attention/component/TableList.js +38 -0
- package/dist/components/WorkflowPrintContainer/component/attention/index.d.ts +10 -0
- package/dist/components/WorkflowPrintContainer/component/attention/index.js +95 -0
- package/dist/components/WorkflowPrintContainer/component/audit/component/TableList.d.ts +8 -0
- package/dist/components/WorkflowPrintContainer/component/audit/component/TableList.js +53 -0
- package/dist/components/WorkflowPrintContainer/component/audit/index.d.ts +7 -0
- package/dist/components/WorkflowPrintContainer/component/audit/index.js +88 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/component/TableList.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/component/TableList.js +53 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/index.d.ts +11 -0
- package/dist/components/WorkflowPrintContainer/component/previewTable/index.js +60 -0
- package/dist/components/WorkflowPrintContainer/component/send/component/TableList.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/send/component/TableList.js +50 -0
- package/dist/components/WorkflowPrintContainer/component/send/index.d.ts +9 -0
- package/dist/components/WorkflowPrintContainer/component/send/index.js +92 -0
- package/dist/components/WorkflowPrintContainer/component/trail/component/TableList.d.ts +12 -0
- package/dist/components/WorkflowPrintContainer/component/trail/component/TableList.js +282 -0
- package/dist/components/WorkflowPrintContainer/component/trail/index.d.ts +11 -0
- package/dist/components/WorkflowPrintContainer/component/trail/index.js +56 -0
- package/dist/components/WorkflowPrintContainer/images.d.ts +2 -0
- package/dist/components/WorkflowPrintContainer/images.js +2 -0
- package/dist/components/WorkflowPrintContainer/index.d.ts +2 -0
- package/dist/components/WorkflowPrintContainer/index.js +2 -0
- package/dist/components/WorkflowPrintContainer/service.d.ts +14 -0
- package/dist/components/WorkflowPrintContainer/service.js +101 -0
- package/dist/components/WorkflowPrintContainer/usePagination.d.ts +14 -0
- package/dist/components/WorkflowPrintContainer/usePagination.js +22 -0
- package/dist/components/WorkflowPrintContainer/workflow-print-container.d.ts +100 -0
- package/dist/components/WorkflowPrintContainer/workflow-print-container.js +236 -0
- package/dist/components/business/Analyse/index.js +12 -11
- package/dist/components/business/CodeQuery/component/SearchForm.js +3 -2
- package/dist/components/business/CodeQuery/component/TableList.js +5 -4
- package/dist/components/business/CodeQuery/hooks.js +2 -1
- package/dist/components/business/CodeQuery/index.js +2 -1
- package/dist/components/business/Common/UserForgetPassword/index.js +36 -28
- package/dist/components/business/Common/UserInfo/component/MakingForm.js +11 -10
- package/dist/components/business/Common/UserInfo/index.js +7 -4
- package/dist/components/business/Common/UserPassword/index.d.ts +1 -0
- package/dist/components/business/Common/UserPassword/index.js +39 -18
- package/dist/components/business/Common/validatePassword.d.ts +1 -1
- package/dist/components/business/Common/validatePassword.js +17 -7
- package/dist/components/business/DetailCard/index.js +7 -6
- package/dist/components/business/DetailHeader/index.js +7 -6
- package/dist/components/business/DetailList/index.js +5 -4
- package/dist/components/business/DgColumns/index.js +12 -11
- package/dist/components/business/ExportButton/index.js +6 -5
- package/dist/components/business/Footer/index.js +4 -1
- package/dist/components/business/GridList/item.d.ts +1 -1
- package/dist/components/business/List/item.d.ts +1 -1
- package/dist/components/business/NewList/item.d.ts +1 -1
- package/dist/components/business/NewList/item.js +1 -1
- package/dist/components/business/OperationBtnGroup/index.js +17 -16
- package/dist/components/business/SearchContainer/hooks/useToggle.d.ts +1 -1
- package/dist/components/business/SearchContainer/hooks/useToggle.js +5 -4
- package/dist/components/business/SearchContainer/record-common-item.d.ts +14 -0
- package/dist/components/business/SearchContainer/record-common-item.js +82 -0
- package/dist/components/business/SearchContainer/record-common-list.d.ts +3 -0
- package/dist/components/business/SearchContainer/record-common-list.js +64 -0
- package/dist/components/business/SearchContainer/search-container.d.ts +13 -0
- package/dist/components/business/SearchContainer/search-container.js +32 -3
- package/dist/components/business/SearchContainer/search-drawer.d.ts +1 -0
- package/dist/components/business/SearchContainer/search-drawer.js +139 -13
- package/dist/components/business/SearchContainer/search-item.js +33 -2
- package/dist/components/business/SearchContainer/search-left.d.ts +1 -0
- package/dist/components/business/SearchContainer/search-left.js +11 -3
- package/dist/components/business/SearchContainer/search-right.js +23 -4
- package/dist/components/business/SearchContainer/useRecordCommonInit.d.ts +15 -0
- package/dist/components/business/SearchContainer/useRecordCommonInit.js +242 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearch.d.ts +7 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearch.js +140 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearchContext.d.ts +31 -0
- package/dist/components/business/SearchContainer/useRecordCommonSearchContext.js +8 -0
- package/dist/components/business/Signatures/components/AttachOperation.js +7 -6
- package/dist/components/business/Signatures/components/CompareResult.js +7 -6
- package/dist/components/business/Signatures/components/DetailTable.js +37 -34
- package/dist/components/business/Signatures/components/QunjSeal.js +5 -4
- package/dist/components/business/Signatures/components/SealCheckbox.js +3 -2
- package/dist/components/business/Signatures/components/TemplateAttach.js +2 -1
- package/dist/components/business/Signatures/index.js +64 -53
- package/dist/components/business/SortList/sort-drawer.js +5 -4
- package/dist/components/business/Template/index.js +11 -10
- package/dist/components/utils/MyStorage.d.ts +36 -0
- package/dist/components/utils/MyStorage.js +120 -0
- package/dist/components/utils/ZtxkContext.d.ts +34 -0
- package/dist/components/utils/ZtxkContext.js +13 -0
- package/dist/components/utils/fetch.d.ts +10 -0
- package/dist/components/utils/fetch.js +119 -0
- package/dist/components/utils/index.d.ts +1 -0
- package/dist/components/utils/index.js +20 -0
- package/dist/components/utils/processNumber.d.ts +12 -0
- package/dist/components/utils/processNumber.js +106 -0
- package/dist/components/utils/upload.js +6 -3
- package/dist/components/utils/useBaseContext.d.ts +5 -0
- package/dist/components/utils/useBaseContext.js +10 -0
- package/dist/components/utils/useLastest.d.ts +2 -0
- package/dist/components/utils/useLastest.js +6 -0
- package/dist/components/utils/useMemoizedFn.d.ts +4 -0
- package/dist/components/utils/useMemoizedFn.js +19 -0
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/index.css +1011 -7
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +200 -84
- package/dist/locales/en-US.json +818 -0
- package/dist/locales/zh-CN.json +818 -0
- package/dist/request.js +6 -5
- package/package.json +7 -2
package/dist/index.css
CHANGED
|
@@ -762,6 +762,7 @@ template {
|
|
|
762
762
|
display: flex;
|
|
763
763
|
flex-wrap: wrap;
|
|
764
764
|
flex-grow: 1;
|
|
765
|
+
width: 100%;
|
|
765
766
|
}
|
|
766
767
|
.zt-search .zt-search__left.zt-search__left--istoggle {
|
|
767
768
|
transition: max-height 0.4s ease-out;
|
|
@@ -912,6 +913,7 @@ template {
|
|
|
912
913
|
/* border-left: 1px solid #1566d2 !important; */
|
|
913
914
|
}
|
|
914
915
|
.zt-search .zt-search__left .zt-search__left__item .ant-input-affix-wrapper {
|
|
916
|
+
border: 1px solid #d9d9d9;
|
|
915
917
|
border-left: none;
|
|
916
918
|
border-radius: 0 4px 4px 0;
|
|
917
919
|
}
|
|
@@ -1075,6 +1077,34 @@ template {
|
|
|
1075
1077
|
.zt-search__right > button.ant-btn:first-child {
|
|
1076
1078
|
margin-left: 0;
|
|
1077
1079
|
}
|
|
1080
|
+
.zt-search__right.zt-search__right--record {
|
|
1081
|
+
flex-direction: column;
|
|
1082
|
+
}
|
|
1083
|
+
.zt-search__right.zt-search__right--record .zt-search__right--record-left > button.ant-btn {
|
|
1084
|
+
margin-left: 10px;
|
|
1085
|
+
margin-right: 0;
|
|
1086
|
+
}
|
|
1087
|
+
.zt-search__right.zt-search__right--record .zt-search__right--record-left > button.ant-btn:first-child {
|
|
1088
|
+
margin-left: 0;
|
|
1089
|
+
}
|
|
1090
|
+
.zt-search__right.zt-search__right--record .zt-search__right--record-right > button.ant-btn {
|
|
1091
|
+
background-color: #ebf3fe;
|
|
1092
|
+
color: #768696;
|
|
1093
|
+
border-color: #cdd9e6;
|
|
1094
|
+
}
|
|
1095
|
+
.zt-search__right.zt-search__right--record .zt-search__right--record-right > button.ant-btn:focus, .zt-search__right.zt-search__right--record .zt-search__right--record-right > button.ant-btn:active {
|
|
1096
|
+
background-color: #ebf3fe;
|
|
1097
|
+
color: #768696;
|
|
1098
|
+
border-color: #cdd9e6;
|
|
1099
|
+
}
|
|
1100
|
+
.zt-search__right.zt-search__right--record .zt-search__right--record-right > button.ant-btn:hover {
|
|
1101
|
+
background-color: #cdd9e6;
|
|
1102
|
+
color: #768696;
|
|
1103
|
+
border-color: #cdd9e6;
|
|
1104
|
+
}
|
|
1105
|
+
.zt-search__right.zt-search__right--record .zt-search__right--record-right .ant-dropdown-trigger {
|
|
1106
|
+
height: 30px;
|
|
1107
|
+
}
|
|
1078
1108
|
|
|
1079
1109
|
.search-drawer .ant-drawer-header {
|
|
1080
1110
|
padding: 10px 12px;
|
|
@@ -1095,6 +1125,47 @@ template {
|
|
|
1095
1125
|
.search-drawer .ant-drawer-body {
|
|
1096
1126
|
padding: 0;
|
|
1097
1127
|
}
|
|
1128
|
+
.search-drawer .ant-drawer-body .search-drawer--filter {
|
|
1129
|
+
height: 100%;
|
|
1130
|
+
display: flex;
|
|
1131
|
+
flex-direction: column;
|
|
1132
|
+
}
|
|
1133
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input {
|
|
1134
|
+
display: flex;
|
|
1135
|
+
align-items: center;
|
|
1136
|
+
}
|
|
1137
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search {
|
|
1138
|
+
width: 100%;
|
|
1139
|
+
}
|
|
1140
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search .ant-input-wrapper input {
|
|
1141
|
+
background: #f0f0f0;
|
|
1142
|
+
border: 0px;
|
|
1143
|
+
color: #333333;
|
|
1144
|
+
border-radius: 0 0 0 0;
|
|
1145
|
+
text-align: center;
|
|
1146
|
+
}
|
|
1147
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search .ant-input-wrapper input:focus {
|
|
1148
|
+
outline: 0;
|
|
1149
|
+
box-shadow: none;
|
|
1150
|
+
}
|
|
1151
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search .ant-input-wrapper .ant-input-group-addon > button {
|
|
1152
|
+
background: #f0f0f0;
|
|
1153
|
+
border: 0px;
|
|
1154
|
+
height: 28px;
|
|
1155
|
+
border-radius: 0 0 0 0;
|
|
1156
|
+
outline: none;
|
|
1157
|
+
}
|
|
1158
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input > .selector-all {
|
|
1159
|
+
border-radius: 0;
|
|
1160
|
+
border-right: 0;
|
|
1161
|
+
}
|
|
1162
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .search-drawer--filter-input > .selector-inverse {
|
|
1163
|
+
border-radius: 0;
|
|
1164
|
+
}
|
|
1165
|
+
.search-drawer .ant-drawer-body .search-drawer--filter .ant-checkbox-group {
|
|
1166
|
+
flex: 1;
|
|
1167
|
+
overflow: auto;
|
|
1168
|
+
}
|
|
1098
1169
|
.search-drawer .ant-drawer-body .ant-checkbox-group {
|
|
1099
1170
|
width: 100%;
|
|
1100
1171
|
}
|
|
@@ -1111,6 +1182,83 @@ template {
|
|
|
1111
1182
|
border-radius: 0;
|
|
1112
1183
|
}
|
|
1113
1184
|
|
|
1185
|
+
.record-common-list--container {
|
|
1186
|
+
display: flex;
|
|
1187
|
+
flex-direction: row;
|
|
1188
|
+
line-height: 26px;
|
|
1189
|
+
margin: 6px 0;
|
|
1190
|
+
}
|
|
1191
|
+
.record-common-list--container .record-common-list--title {
|
|
1192
|
+
font-size: 13px;
|
|
1193
|
+
color: #999;
|
|
1194
|
+
display: flex;
|
|
1195
|
+
align-items: center;
|
|
1196
|
+
margin-bottom: 10px;
|
|
1197
|
+
}
|
|
1198
|
+
.record-common-list--container .record-common-list--item--container {
|
|
1199
|
+
display: flex;
|
|
1200
|
+
margin-left: 10px;
|
|
1201
|
+
flex: 1;
|
|
1202
|
+
flex-wrap: wrap;
|
|
1203
|
+
max-height: 76px;
|
|
1204
|
+
overflow-y: auto;
|
|
1205
|
+
}
|
|
1206
|
+
.record-common-list--container .record-common-list--item--container .record-common-sortable {
|
|
1207
|
+
cursor: move;
|
|
1208
|
+
}
|
|
1209
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item {
|
|
1210
|
+
font-size: 13px;
|
|
1211
|
+
color: #333;
|
|
1212
|
+
cursor: pointer;
|
|
1213
|
+
margin-right: 10px;
|
|
1214
|
+
padding: 0 6px;
|
|
1215
|
+
border: 1px solid #d9d9d9;
|
|
1216
|
+
border-radius: 4px;
|
|
1217
|
+
position: relative;
|
|
1218
|
+
background-color: #ffffff;
|
|
1219
|
+
color: #768696;
|
|
1220
|
+
border-color: #768696;
|
|
1221
|
+
display: flex;
|
|
1222
|
+
align-items: center;
|
|
1223
|
+
justify-content: center;
|
|
1224
|
+
max-width: 200px;
|
|
1225
|
+
margin-bottom: 10px;
|
|
1226
|
+
}
|
|
1227
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item .record-common-list--item--title {
|
|
1228
|
+
max-width: 180px;
|
|
1229
|
+
overflow: hidden;
|
|
1230
|
+
text-overflow: ellipsis;
|
|
1231
|
+
white-space: nowrap;
|
|
1232
|
+
}
|
|
1233
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item.record-common-list--item--active {
|
|
1234
|
+
background-color: #e0eafe;
|
|
1235
|
+
color: #5b76f6;
|
|
1236
|
+
border-color: #e0eafe;
|
|
1237
|
+
}
|
|
1238
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item.record-common-list--item--active:hover {
|
|
1239
|
+
background-color: #e0eafe;
|
|
1240
|
+
color: #5b76f6;
|
|
1241
|
+
border-color: #e0eafe;
|
|
1242
|
+
}
|
|
1243
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item:hover {
|
|
1244
|
+
background-color: #ffffff;
|
|
1245
|
+
color: #5b76f6;
|
|
1246
|
+
border-color: #5b76f6;
|
|
1247
|
+
}
|
|
1248
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item:hover .record-common-list--delete {
|
|
1249
|
+
color: #768696;
|
|
1250
|
+
}
|
|
1251
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item .record-common-list--delete {
|
|
1252
|
+
cursor: pointer;
|
|
1253
|
+
margin-left: 2px;
|
|
1254
|
+
}
|
|
1255
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item .record-common-list--delete:hover {
|
|
1256
|
+
color: #1566d2;
|
|
1257
|
+
}
|
|
1258
|
+
.record-common-list--container .record-common-list--item--container .record-common-list--item:last-child {
|
|
1259
|
+
margin-right: 0;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1114
1262
|
.footer {
|
|
1115
1263
|
padding: 0;
|
|
1116
1264
|
background: #ffffff;
|
|
@@ -1165,6 +1313,24 @@ template {
|
|
|
1165
1313
|
flex: 1;
|
|
1166
1314
|
max-height: none !important;
|
|
1167
1315
|
}
|
|
1316
|
+
.zt-table .ant-table-empty .ant-table-body {
|
|
1317
|
+
min-height: 0;
|
|
1318
|
+
}
|
|
1319
|
+
.zt-table .ant-table-empty .ant-table-body .ant-table-expanded-row-fixed {
|
|
1320
|
+
color: rgba(0, 0, 0, 0.25);
|
|
1321
|
+
}
|
|
1322
|
+
.zt-table .ant-table-filter-trigger {
|
|
1323
|
+
margin: 0;
|
|
1324
|
+
}
|
|
1325
|
+
.zt-table tr.ant-table-row-doubleClick > td {
|
|
1326
|
+
background: #e6f7ff;
|
|
1327
|
+
border-color: rgba(0, 0, 0, 0.03);
|
|
1328
|
+
}
|
|
1329
|
+
.zt-table tr.ztxk-tr-subtotal > td {
|
|
1330
|
+
background: #dbe5e9;
|
|
1331
|
+
height: 30px !important;
|
|
1332
|
+
border-color: rgba(0, 0, 0, 0.03);
|
|
1333
|
+
}
|
|
1168
1334
|
.zt-table .react-resizable {
|
|
1169
1335
|
position: relative;
|
|
1170
1336
|
background-clip: padding-box;
|
|
@@ -1178,6 +1344,14 @@ template {
|
|
|
1178
1344
|
height: 100%;
|
|
1179
1345
|
cursor: col-resize;
|
|
1180
1346
|
}
|
|
1347
|
+
.zt-table .react-resizable-handle.active::before {
|
|
1348
|
+
content: "";
|
|
1349
|
+
position: absolute;
|
|
1350
|
+
left: 50%;
|
|
1351
|
+
top: 0;
|
|
1352
|
+
bottom: 0;
|
|
1353
|
+
border-left: dotted 3px #40a9ff;
|
|
1354
|
+
}
|
|
1181
1355
|
.zt-table th,
|
|
1182
1356
|
.zt-table td {
|
|
1183
1357
|
font-size: 13px;
|
|
@@ -1198,7 +1372,7 @@ template {
|
|
|
1198
1372
|
background: #fdfd19;
|
|
1199
1373
|
}
|
|
1200
1374
|
.zt-table .ant-table-body {
|
|
1201
|
-
min-height:
|
|
1375
|
+
min-height: 100px;
|
|
1202
1376
|
}
|
|
1203
1377
|
.zt-table .ant-table-thead > tr > th,
|
|
1204
1378
|
.zt-table .ant-table-tbody > tr > td,
|
|
@@ -1212,14 +1386,13 @@ template {
|
|
|
1212
1386
|
.zt-table .ant-table-summary > tr > td .ant-select {
|
|
1213
1387
|
width: 100%;
|
|
1214
1388
|
}
|
|
1215
|
-
.zt-table .ant-table-thead > tr > th .ant-select .ant-select-selector,
|
|
1216
|
-
.zt-table .ant-table-tbody > tr > td .ant-select .ant-select-selector,
|
|
1217
|
-
.zt-table .ant-table-summary > tr > td .ant-select .ant-select-selector {
|
|
1218
|
-
border: none;
|
|
1219
|
-
}
|
|
1220
1389
|
.zt-table .ant-table-tbody > tr > td {
|
|
1221
1390
|
word-break: break-all;
|
|
1222
1391
|
}
|
|
1392
|
+
.zt-table .ant-table-tbody > tr > td .number-case--tooltip {
|
|
1393
|
+
display: block;
|
|
1394
|
+
text-align: right;
|
|
1395
|
+
}
|
|
1223
1396
|
.zt-table .ant-table-summary > tr > td {
|
|
1224
1397
|
text-align: left;
|
|
1225
1398
|
font-weight: bold;
|
|
@@ -1257,6 +1430,9 @@ template {
|
|
|
1257
1430
|
color: #1566d2;
|
|
1258
1431
|
}
|
|
1259
1432
|
|
|
1433
|
+
.zt-table__dynamic {
|
|
1434
|
+
left: auto;
|
|
1435
|
+
}
|
|
1260
1436
|
.zt-table__dynamic .ant-drawer-mask {
|
|
1261
1437
|
background-color: rgba(0, 0, 0, 0.25);
|
|
1262
1438
|
}
|
|
@@ -1292,6 +1468,53 @@ template {
|
|
|
1292
1468
|
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body {
|
|
1293
1469
|
padding: 0;
|
|
1294
1470
|
}
|
|
1471
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter {
|
|
1472
|
+
height: 100%;
|
|
1473
|
+
display: flex;
|
|
1474
|
+
flex-direction: column;
|
|
1475
|
+
}
|
|
1476
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input {
|
|
1477
|
+
display: flex;
|
|
1478
|
+
align-items: center;
|
|
1479
|
+
}
|
|
1480
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search {
|
|
1481
|
+
width: 100%;
|
|
1482
|
+
}
|
|
1483
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search .ant-input-wrapper input {
|
|
1484
|
+
background: #f0f0f0;
|
|
1485
|
+
border: 0px;
|
|
1486
|
+
color: #333333;
|
|
1487
|
+
border-radius: 0 0 0 0;
|
|
1488
|
+
text-align: center;
|
|
1489
|
+
}
|
|
1490
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search .ant-input-wrapper input:focus {
|
|
1491
|
+
outline: 0;
|
|
1492
|
+
box-shadow: none;
|
|
1493
|
+
}
|
|
1494
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input .ant-input-group-wrapper.ant-input-search .ant-input-wrapper .ant-input-group-addon > button {
|
|
1495
|
+
background: #f0f0f0;
|
|
1496
|
+
border: 0px;
|
|
1497
|
+
height: 28px;
|
|
1498
|
+
border-radius: 0 0 0 0;
|
|
1499
|
+
outline: none;
|
|
1500
|
+
}
|
|
1501
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input > .selector-all {
|
|
1502
|
+
border-radius: 0;
|
|
1503
|
+
border-right: 0;
|
|
1504
|
+
}
|
|
1505
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .search-drawer--filter-input > .selector-inverse {
|
|
1506
|
+
border-radius: 0;
|
|
1507
|
+
}
|
|
1508
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .ant-checkbox-group {
|
|
1509
|
+
flex: 1;
|
|
1510
|
+
overflow: auto;
|
|
1511
|
+
}
|
|
1512
|
+
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .search-drawer--filter .ant-checkbox-group .zt-checkbox {
|
|
1513
|
+
max-width: 80%;
|
|
1514
|
+
overflow: hidden;
|
|
1515
|
+
text-overflow: ellipsis;
|
|
1516
|
+
white-space: nowrap;
|
|
1517
|
+
}
|
|
1295
1518
|
.zt-table__dynamic .ant-drawer-wrapper-body .ant-drawer-body .zt-table__dynamic__checkbox-item {
|
|
1296
1519
|
padding: 0 16px;
|
|
1297
1520
|
height: 38px;
|
|
@@ -1326,7 +1549,6 @@ template {
|
|
|
1326
1549
|
.zt-table__enhance-cell .ant-input-affix-wrapper,
|
|
1327
1550
|
.zt-table__enhance-cell .ant-input-number,
|
|
1328
1551
|
.zt-table__enhance-cell .ant-select-selector {
|
|
1329
|
-
border: none;
|
|
1330
1552
|
width: 100%;
|
|
1331
1553
|
}
|
|
1332
1554
|
.zt-table__enhance-cell .ant-form-item-control-input {
|
|
@@ -1357,6 +1579,99 @@ template {
|
|
|
1357
1579
|
text-align: left !important;
|
|
1358
1580
|
}
|
|
1359
1581
|
|
|
1582
|
+
.zt-table_sorter {
|
|
1583
|
+
display: flex;
|
|
1584
|
+
align-items: center;
|
|
1585
|
+
justify-content: space-between;
|
|
1586
|
+
}
|
|
1587
|
+
.zt-table_sorter .sorter_title {
|
|
1588
|
+
flex: 1;
|
|
1589
|
+
text-align: center;
|
|
1590
|
+
}
|
|
1591
|
+
.zt-table_sorter .sorter_icon {
|
|
1592
|
+
color: #bfbfbf;
|
|
1593
|
+
font-size: 0;
|
|
1594
|
+
display: inline-flex;
|
|
1595
|
+
flex-direction: column;
|
|
1596
|
+
align-items: center;
|
|
1597
|
+
opacity: 0;
|
|
1598
|
+
width: 0;
|
|
1599
|
+
transition: opacity 0.3s;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.zt-table th:hover .sorter_icon {
|
|
1603
|
+
width: auto;
|
|
1604
|
+
opacity: 1;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
.zt-table th .ant-dropdown-trigger.ant-table-filter-trigger {
|
|
1608
|
+
opacity: 0;
|
|
1609
|
+
width: 0;
|
|
1610
|
+
transition: opacity 0.3s;
|
|
1611
|
+
}
|
|
1612
|
+
.zt-table th:hover .ant-dropdown-trigger.ant-table-filter-trigger {
|
|
1613
|
+
width: auto;
|
|
1614
|
+
opacity: 1;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.zt-table_fillDown {
|
|
1618
|
+
display: flex;
|
|
1619
|
+
align-items: center;
|
|
1620
|
+
justify-content: space-between;
|
|
1621
|
+
}
|
|
1622
|
+
.zt-table_fillDown .fillDown_icon {
|
|
1623
|
+
color: #bfbfbf;
|
|
1624
|
+
cursor: pointer;
|
|
1625
|
+
font-size: 16px;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.table-checkbox {
|
|
1629
|
+
display: flex;
|
|
1630
|
+
flex-direction: column;
|
|
1631
|
+
margin-bottom: 8px;
|
|
1632
|
+
max-height: 200px;
|
|
1633
|
+
width: 200px;
|
|
1634
|
+
overflow-y: auto;
|
|
1635
|
+
}
|
|
1636
|
+
.table-checkbox > .zt-checkbox {
|
|
1637
|
+
margin-left: 0;
|
|
1638
|
+
}
|
|
1639
|
+
.table-checkbox > .zt-checkbox .ant-checkbox + span {
|
|
1640
|
+
text-overflow: ellipsis;
|
|
1641
|
+
display: block;
|
|
1642
|
+
white-space: nowrap;
|
|
1643
|
+
overflow: hidden;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.table-select-none {
|
|
1647
|
+
user-select: none;
|
|
1648
|
+
}
|
|
1649
|
+
.table-select-none * {
|
|
1650
|
+
user-select: none;
|
|
1651
|
+
}
|
|
1652
|
+
.table-select-none td.move-selected {
|
|
1653
|
+
user-select: none;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.table-subtotal--tip {
|
|
1657
|
+
position: absolute;
|
|
1658
|
+
max-width: 200px;
|
|
1659
|
+
background-color: #fff;
|
|
1660
|
+
border-radius: 4px;
|
|
1661
|
+
box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
|
|
1662
|
+
padding: 10px;
|
|
1663
|
+
top: -1000px;
|
|
1664
|
+
left: -1000px;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.zt-table .ant-table-tbody td.move-selected {
|
|
1668
|
+
border: 1px solid #1566d2 !important;
|
|
1669
|
+
border-right: 1px solid #1566d2 !important;
|
|
1670
|
+
}
|
|
1671
|
+
.zt-table .ant-table-tbody tr.ant-table-row:hover > td.move-selected {
|
|
1672
|
+
background-color: #fff;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1360
1675
|
.ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
|
|
1361
1676
|
font-weight: normal;
|
|
1362
1677
|
}
|
|
@@ -1987,6 +2302,14 @@ body {
|
|
|
1987
2302
|
white-space: nowrap;
|
|
1988
2303
|
}
|
|
1989
2304
|
|
|
2305
|
+
.zt-select--selector-container .zt-btn.ant-btn {
|
|
2306
|
+
padding: 4px 8px;
|
|
2307
|
+
margin-right: 4px;
|
|
2308
|
+
}
|
|
2309
|
+
.zt-select--selector-container:last-child {
|
|
2310
|
+
margin-right: 0;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
1990
2313
|
.signatures-attach {
|
|
1991
2314
|
font-size: 13px;
|
|
1992
2315
|
display: flex;
|
|
@@ -2072,4 +2395,685 @@ textarea.textArea-handleSize-true {
|
|
|
2072
2395
|
height: auto;
|
|
2073
2396
|
}
|
|
2074
2397
|
|
|
2398
|
+
.boximage-a {
|
|
2399
|
+
min-height: 70px;
|
|
2400
|
+
overflow-y: auto;
|
|
2401
|
+
display: flex;
|
|
2402
|
+
margin-top: 10px;
|
|
2403
|
+
margin-bottom: 14px;
|
|
2404
|
+
}
|
|
2405
|
+
.boximage-a .boximage {
|
|
2406
|
+
margin-top: 2px;
|
|
2407
|
+
margin-left: 10px;
|
|
2408
|
+
width: 65px;
|
|
2409
|
+
}
|
|
2410
|
+
.boximage-a .boximage .imagetext {
|
|
2411
|
+
width: 50px;
|
|
2412
|
+
height: 40px;
|
|
2413
|
+
align-items: center;
|
|
2414
|
+
display: flex;
|
|
2415
|
+
flex-direction: column;
|
|
2416
|
+
}
|
|
2417
|
+
.boximage-a .boximage .imagetext .imgages {
|
|
2418
|
+
width: 50px;
|
|
2419
|
+
height: 35px;
|
|
2420
|
+
display: flex;
|
|
2421
|
+
justify-content: center;
|
|
2422
|
+
align-content: center;
|
|
2423
|
+
align-items: center;
|
|
2424
|
+
}
|
|
2425
|
+
.boximage-a .boximage .imagetext .imgages img {
|
|
2426
|
+
width: 35px;
|
|
2427
|
+
height: 35px;
|
|
2428
|
+
border-radius: 5px;
|
|
2429
|
+
}
|
|
2430
|
+
.boximage-a .boximage .imagetext .name {
|
|
2431
|
+
display: flex;
|
|
2432
|
+
justify-content: center;
|
|
2433
|
+
align-content: center;
|
|
2434
|
+
margin-top: 6px;
|
|
2435
|
+
align-items: center;
|
|
2436
|
+
width: 70px;
|
|
2437
|
+
}
|
|
2438
|
+
.boximage-a .boximage .imagetext .name span {
|
|
2439
|
+
font-size: 1px;
|
|
2440
|
+
margin-top: 3px;
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2443
|
+
.resizable-textarea {
|
|
2444
|
+
min-height: 5rem;
|
|
2445
|
+
/* 最小高度,对应 5 行高度 */
|
|
2446
|
+
max-height: 7rem;
|
|
2447
|
+
/* 最大高度,对应 7 行高度 */
|
|
2448
|
+
overflow-y: auto;
|
|
2449
|
+
/* 超出最大高度时显示滚动条 */
|
|
2450
|
+
white-space: pre-wrap;
|
|
2451
|
+
/* 处理多行文本的换行 */
|
|
2452
|
+
word-wrap: break-word;
|
|
2453
|
+
/* 处理单词换行 */
|
|
2454
|
+
border: 1px solid #ccc;
|
|
2455
|
+
/* 边框样式,可自行调整 */
|
|
2456
|
+
padding: 5px;
|
|
2457
|
+
/* 内边距,可自行调整 */
|
|
2458
|
+
font-size: 16px;
|
|
2459
|
+
/* 字体大小,可自行调整 */
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2462
|
+
.__at_span {
|
|
2463
|
+
color: red;
|
|
2464
|
+
margin: 0 2px;
|
|
2465
|
+
font-weight: bolder;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
.wf-wrapper .wf-modal-button-cancel {
|
|
2469
|
+
width: 80px;
|
|
2470
|
+
height: 28px;
|
|
2471
|
+
color: #768696;
|
|
2472
|
+
background: #ebf3fe;
|
|
2473
|
+
border-radius: 4px;
|
|
2474
|
+
border: 1px solid #cdd9e6;
|
|
2475
|
+
}
|
|
2476
|
+
.wf-wrapper .wf-modal-button-submit {
|
|
2477
|
+
width: 80px;
|
|
2478
|
+
height: 28px;
|
|
2479
|
+
background: #4285f4;
|
|
2480
|
+
border-radius: 4px;
|
|
2481
|
+
}
|
|
2482
|
+
.wf-wrapper .wf-modal-item-reject {
|
|
2483
|
+
display: flex;
|
|
2484
|
+
padding: 8px 0 8px 0;
|
|
2485
|
+
align-items: center;
|
|
2486
|
+
}
|
|
2487
|
+
.wf-wrapper .wf-modal-item-reject .left {
|
|
2488
|
+
flex: 1;
|
|
2489
|
+
margin-left: 15px;
|
|
2490
|
+
text-align: right;
|
|
2491
|
+
align-items: center;
|
|
2492
|
+
justify-content: center;
|
|
2493
|
+
}
|
|
2494
|
+
.wf-wrapper .wf-modal-item-reject .left .lable {
|
|
2495
|
+
height: 20px;
|
|
2496
|
+
font-size: 14px;
|
|
2497
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2498
|
+
font-weight: 400;
|
|
2499
|
+
color: #888888;
|
|
2500
|
+
line-height: 20px;
|
|
2501
|
+
}
|
|
2502
|
+
.wf-wrapper .wf-modal-item-reject-check {
|
|
2503
|
+
display: flex;
|
|
2504
|
+
padding: 0px 0 8px 0;
|
|
2505
|
+
align-items: center;
|
|
2506
|
+
}
|
|
2507
|
+
.wf-wrapper .wf-modal-item-reject-check .left {
|
|
2508
|
+
flex: 1;
|
|
2509
|
+
text-align: right;
|
|
2510
|
+
align-items: center;
|
|
2511
|
+
justify-content: center;
|
|
2512
|
+
}
|
|
2513
|
+
.wf-wrapper .wf-modal-item-reject-check .left .lable {
|
|
2514
|
+
height: 20px;
|
|
2515
|
+
font-size: 14px;
|
|
2516
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2517
|
+
font-weight: 400;
|
|
2518
|
+
color: #888888;
|
|
2519
|
+
line-height: 20px;
|
|
2520
|
+
}
|
|
2521
|
+
.wf-wrapper .wf-on-check-bg {
|
|
2522
|
+
padding: 4px 0 4px 10px;
|
|
2523
|
+
background: rgba(66, 133, 244, 0.1);
|
|
2524
|
+
border-radius: 4px;
|
|
2525
|
+
border: 1px solid #ebebeb;
|
|
2526
|
+
}
|
|
2527
|
+
.wf-wrapper .wf-un-check-bg {
|
|
2528
|
+
padding: 4px 0 4px 10px;
|
|
2529
|
+
background: rgba(255, 255, 255, 0.1);
|
|
2530
|
+
border-radius: 4px;
|
|
2531
|
+
border: 1px solid #ebebeb;
|
|
2532
|
+
}
|
|
2533
|
+
.wf-wrapper .wf-modal-body-reject {
|
|
2534
|
+
padding: 2px 10px 0 10px;
|
|
2535
|
+
font-size: 13px;
|
|
2536
|
+
}
|
|
2537
|
+
.wf-wrapper .wf-modal-confirm-title {
|
|
2538
|
+
font-size: 13px;
|
|
2539
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2540
|
+
font-weight: 400;
|
|
2541
|
+
color: #333333;
|
|
2542
|
+
line-height: 18px;
|
|
2543
|
+
}
|
|
2544
|
+
.wf-wrapper .wf-task-header-container {
|
|
2545
|
+
display: flex;
|
|
2546
|
+
justify-content: space-between;
|
|
2547
|
+
align-items: center;
|
|
2548
|
+
}
|
|
2549
|
+
.wf-wrapper .wf-task-header-container .wf-task-header {
|
|
2550
|
+
display: flex;
|
|
2551
|
+
padding: 0px 0 8px 0;
|
|
2552
|
+
align-items: center;
|
|
2553
|
+
height: 48px;
|
|
2554
|
+
background: #ffffff;
|
|
2555
|
+
text-align: center;
|
|
2556
|
+
}
|
|
2557
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .title {
|
|
2558
|
+
height: 22px;
|
|
2559
|
+
font-size: 16px;
|
|
2560
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2561
|
+
font-weight: 400;
|
|
2562
|
+
color: #333333;
|
|
2563
|
+
line-height: 22px;
|
|
2564
|
+
}
|
|
2565
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .status-ing {
|
|
2566
|
+
height: 19px;
|
|
2567
|
+
font-size: 12px;
|
|
2568
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2569
|
+
font-weight: 400;
|
|
2570
|
+
color: #4285f4;
|
|
2571
|
+
line-height: 17px;
|
|
2572
|
+
padding: 0px 4px;
|
|
2573
|
+
border: 1px solid #4285f4;
|
|
2574
|
+
border-radius: 4px 0;
|
|
2575
|
+
margin-left: 15px;
|
|
2576
|
+
}
|
|
2577
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .status-pass {
|
|
2578
|
+
font-size: 12px;
|
|
2579
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2580
|
+
font-weight: 400;
|
|
2581
|
+
color: #66cc66;
|
|
2582
|
+
line-height: 17px;
|
|
2583
|
+
padding: 0px 4px;
|
|
2584
|
+
border: 1px solid #66cc66;
|
|
2585
|
+
border-radius: 4px 0;
|
|
2586
|
+
margin-left: 15px;
|
|
2587
|
+
}
|
|
2588
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .status-reject {
|
|
2589
|
+
height: 19px;
|
|
2590
|
+
font-size: 12px;
|
|
2591
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2592
|
+
font-weight: 400;
|
|
2593
|
+
color: #ff6666;
|
|
2594
|
+
line-height: 17px;
|
|
2595
|
+
padding: 0px 4px;
|
|
2596
|
+
border: 1px solid #ff6666;
|
|
2597
|
+
border-radius: 4px 0;
|
|
2598
|
+
margin-left: 15px;
|
|
2599
|
+
}
|
|
2600
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .status-terminated {
|
|
2601
|
+
height: 19px;
|
|
2602
|
+
font-size: 12px;
|
|
2603
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2604
|
+
font-weight: 400;
|
|
2605
|
+
color: #bbbbbb;
|
|
2606
|
+
line-height: 17px;
|
|
2607
|
+
padding: 0px 4px;
|
|
2608
|
+
border: 1px solid #bbbbbb;
|
|
2609
|
+
border-radius: 4px 0;
|
|
2610
|
+
margin-left: 15px;
|
|
2611
|
+
}
|
|
2612
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .priority-emergent {
|
|
2613
|
+
font-size: 12px;
|
|
2614
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2615
|
+
font-weight: 400;
|
|
2616
|
+
color: white;
|
|
2617
|
+
line-height: 17px;
|
|
2618
|
+
padding: 0px 4px;
|
|
2619
|
+
border: 1px solid #fd5454;
|
|
2620
|
+
background-color: #fd5454;
|
|
2621
|
+
border-radius: 4px 0;
|
|
2622
|
+
margin-left: 15px;
|
|
2623
|
+
}
|
|
2624
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .priority-impatient {
|
|
2625
|
+
font-size: 12px;
|
|
2626
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2627
|
+
font-weight: 400;
|
|
2628
|
+
color: #66cc66;
|
|
2629
|
+
line-height: 17px;
|
|
2630
|
+
padding: 0px 4px;
|
|
2631
|
+
border: 1px solid #66cc66;
|
|
2632
|
+
border-radius: 4px 0;
|
|
2633
|
+
margin-left: 15px;
|
|
2634
|
+
}
|
|
2635
|
+
.wf-wrapper .wf-task-header-container .wf-task-header .priority-common {
|
|
2636
|
+
font-size: 12px;
|
|
2637
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2638
|
+
font-weight: 400;
|
|
2639
|
+
color: white;
|
|
2640
|
+
line-height: 17px;
|
|
2641
|
+
padding: 0px 4px;
|
|
2642
|
+
border: 1px solid gray;
|
|
2643
|
+
background-color: gray;
|
|
2644
|
+
border-radius: 4px 0;
|
|
2645
|
+
margin-left: 15px;
|
|
2646
|
+
}
|
|
2647
|
+
.wf-wrapper .wf-task-process-status {
|
|
2648
|
+
position: absolute;
|
|
2649
|
+
top: 0;
|
|
2650
|
+
bottom: 0;
|
|
2651
|
+
right: 130px;
|
|
2652
|
+
}
|
|
2653
|
+
.wf-wrapper .wf-modal-item-reject-check-lable {
|
|
2654
|
+
width: 201px;
|
|
2655
|
+
overflow: hidden;
|
|
2656
|
+
/*超出部分隐藏*/
|
|
2657
|
+
white-space: nowrap;
|
|
2658
|
+
/*不换行*/
|
|
2659
|
+
text-overflow: ellipsis;
|
|
2660
|
+
/*超出部分文字以...显示*/
|
|
2661
|
+
}
|
|
2662
|
+
.wf-wrapper .wf-modal-body-input {
|
|
2663
|
+
font-size: 13px;
|
|
2664
|
+
position: relative;
|
|
2665
|
+
}
|
|
2666
|
+
.wf-wrapper .wf-modal-body-input .hint {
|
|
2667
|
+
font-size: 13px;
|
|
2668
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
2669
|
+
font-weight: 400;
|
|
2670
|
+
color: #888888;
|
|
2671
|
+
line-height: 18px;
|
|
2672
|
+
position: "absolute";
|
|
2673
|
+
bottom: 0;
|
|
2674
|
+
left: 0;
|
|
2675
|
+
right: 0;
|
|
2676
|
+
padding: 0 0 24px 11px;
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2679
|
+
.lbpm-flow-info {
|
|
2680
|
+
width: 100px;
|
|
2681
|
+
height: 100px;
|
|
2682
|
+
position: absolute;
|
|
2683
|
+
right: 0;
|
|
2684
|
+
top: 0;
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
.lbpm-process-status {
|
|
2688
|
+
width: 100px;
|
|
2689
|
+
height: 100px;
|
|
2690
|
+
background-size: 100%;
|
|
2691
|
+
background-repeat: no-repeat;
|
|
2692
|
+
color: #21b77c;
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
.lbpm-discard-status {
|
|
2696
|
+
width: 100px;
|
|
2697
|
+
height: 100px;
|
|
2698
|
+
background-size: 100%;
|
|
2699
|
+
background-repeat: no-repeat;
|
|
2700
|
+
color: #fd696a;
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.zt-container-noFrame-content .zt-container {
|
|
2704
|
+
height: calc(100vh - 68px) !important;
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
.hr-print-container {
|
|
2708
|
+
height: auto !important;
|
|
2709
|
+
}
|
|
2710
|
+
.hr-print-container .print-detail .zt-container {
|
|
2711
|
+
height: auto !important;
|
|
2712
|
+
margin: 0 !important;
|
|
2713
|
+
}
|
|
2714
|
+
.hr-print-container .print-detail .zt-container .workflow-info table {
|
|
2715
|
+
width: 990px !important;
|
|
2716
|
+
min-width: auto !important;
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
.ztxk-watermark.ztxk-watermark--hidden > .ztxk-watermark--div {
|
|
2720
|
+
display: none;
|
|
2721
|
+
}
|
|
2722
|
+
|
|
2723
|
+
.pro-form {
|
|
2724
|
+
display: flex;
|
|
2725
|
+
justify-content: space-between;
|
|
2726
|
+
border-bottom: 1px solid #ebf3fe;
|
|
2727
|
+
background: #ffffff;
|
|
2728
|
+
padding: 0;
|
|
2729
|
+
}
|
|
2730
|
+
.pro-form.pro-form--no-bottom {
|
|
2731
|
+
border-bottom: none;
|
|
2732
|
+
}
|
|
2733
|
+
.pro-form .pro-form__left {
|
|
2734
|
+
flex: 1;
|
|
2735
|
+
position: relative;
|
|
2736
|
+
}
|
|
2737
|
+
.pro-form .pro-form__left.pro-form__left--flex {
|
|
2738
|
+
display: flex;
|
|
2739
|
+
flex-wrap: wrap;
|
|
2740
|
+
flex-grow: 1;
|
|
2741
|
+
}
|
|
2742
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--wrap {
|
|
2743
|
+
display: flex;
|
|
2744
|
+
align-items: flex-start;
|
|
2745
|
+
width: 33.33%;
|
|
2746
|
+
padding-bottom: 10px;
|
|
2747
|
+
padding-right: 10px;
|
|
2748
|
+
}
|
|
2749
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item {
|
|
2750
|
+
margin-bottom: 0;
|
|
2751
|
+
/* 悬浮时样式 */
|
|
2752
|
+
/* 下拉框样式 */
|
|
2753
|
+
/* 输入框样式 */
|
|
2754
|
+
/* 数字输入框组件 */
|
|
2755
|
+
/* 日期组件 */
|
|
2756
|
+
/* 文本域组件 */
|
|
2757
|
+
/* 单选框组 */
|
|
2758
|
+
}
|
|
2759
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-explain {
|
|
2760
|
+
display: none;
|
|
2761
|
+
}
|
|
2762
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-picker-focused {
|
|
2763
|
+
-webkit-box-shadow: none;
|
|
2764
|
+
box-shadow: none;
|
|
2765
|
+
}
|
|
2766
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select {
|
|
2767
|
+
margin-left: 0;
|
|
2768
|
+
}
|
|
2769
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select-focused.ant-select-single:not(.ant-select-customize-input) .ant-select-selector,
|
|
2770
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
2771
|
+
-webkit-box-shadow: none;
|
|
2772
|
+
box-shadow: none;
|
|
2773
|
+
}
|
|
2774
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input:focus,
|
|
2775
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-focused {
|
|
2776
|
+
-webkit-box-shadow: none;
|
|
2777
|
+
box-shadow: none;
|
|
2778
|
+
}
|
|
2779
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-number:focus,
|
|
2780
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-number-focused {
|
|
2781
|
+
-webkit-box-shadow: none;
|
|
2782
|
+
box-shadow: none;
|
|
2783
|
+
}
|
|
2784
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper:focus,
|
|
2785
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper-focused {
|
|
2786
|
+
-webkit-box-shadow: none;
|
|
2787
|
+
box-shadow: none;
|
|
2788
|
+
}
|
|
2789
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-form-item-label,
|
|
2790
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-form-item-label label, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-form-item-label,
|
|
2791
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-form-item-label label {
|
|
2792
|
+
border-color: #1566d2;
|
|
2793
|
+
}
|
|
2794
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-select-selector, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-select-selector {
|
|
2795
|
+
border-color: #1566d2;
|
|
2796
|
+
}
|
|
2797
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-picker, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-picker {
|
|
2798
|
+
border-color: #1566d2;
|
|
2799
|
+
}
|
|
2800
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input,
|
|
2801
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input-number, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-input,
|
|
2802
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-input-number {
|
|
2803
|
+
border-color: #1566d2;
|
|
2804
|
+
}
|
|
2805
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-radio-group,
|
|
2806
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-checkbox-group, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-radio-group,
|
|
2807
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-checkbox-group {
|
|
2808
|
+
border-color: #1566d2;
|
|
2809
|
+
}
|
|
2810
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input-disabled, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-input-disabled {
|
|
2811
|
+
border-color: #cdd9e6 !important;
|
|
2812
|
+
}
|
|
2813
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input-number-disabled, .pro-form .pro-form__left.pro-form__left--flex .ant-form-item:focus-within .ant-input-number-disabled {
|
|
2814
|
+
border-color: #cdd9e6 !important;
|
|
2815
|
+
}
|
|
2816
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-disabled,
|
|
2817
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-number-disabled {
|
|
2818
|
+
background-color: #f5f5f5;
|
|
2819
|
+
}
|
|
2820
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-label {
|
|
2821
|
+
font-size: 12px;
|
|
2822
|
+
color: #768696;
|
|
2823
|
+
text-align: right;
|
|
2824
|
+
border: 1px solid #cdd9e6;
|
|
2825
|
+
border-right: 0px;
|
|
2826
|
+
border-radius: 4px 0px 0px 4px;
|
|
2827
|
+
background-color: #ffffff;
|
|
2828
|
+
padding-left: 6px;
|
|
2829
|
+
transition: border 0.3s;
|
|
2830
|
+
}
|
|
2831
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-label label {
|
|
2832
|
+
font-size: 12px;
|
|
2833
|
+
height: 30px;
|
|
2834
|
+
}
|
|
2835
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select-selector {
|
|
2836
|
+
border-left: none;
|
|
2837
|
+
border-radius: 0px 4px 4px 0px;
|
|
2838
|
+
}
|
|
2839
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select-focused.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
|
|
2840
|
+
border-color: #1566d2;
|
|
2841
|
+
/* border-left: 1px solid #1566d2 !important; */
|
|
2842
|
+
}
|
|
2843
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper {
|
|
2844
|
+
border: 1px solid #d9d9d9;
|
|
2845
|
+
border-left: none;
|
|
2846
|
+
border-radius: 0 4px 4px 0;
|
|
2847
|
+
}
|
|
2848
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper .ant-input {
|
|
2849
|
+
height: auto;
|
|
2850
|
+
font-size: 13px;
|
|
2851
|
+
}
|
|
2852
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper:hover,
|
|
2853
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-number:hover {
|
|
2854
|
+
border-color: #1566d2;
|
|
2855
|
+
}
|
|
2856
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-number {
|
|
2857
|
+
width: 100%;
|
|
2858
|
+
border-radius: 0px 4px 4px 0px;
|
|
2859
|
+
border-left: none;
|
|
2860
|
+
height: 32px;
|
|
2861
|
+
}
|
|
2862
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-number:focus {
|
|
2863
|
+
border-color: #1566d2;
|
|
2864
|
+
border-left: 1px solid #1566d2;
|
|
2865
|
+
}
|
|
2866
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-picker {
|
|
2867
|
+
width: 100%;
|
|
2868
|
+
border-radius: 0px 4px 4px 0px;
|
|
2869
|
+
border-left: none;
|
|
2870
|
+
}
|
|
2871
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-picker.ant-picker-focused {
|
|
2872
|
+
border-color: #1566d2;
|
|
2873
|
+
/* border-left: 1px solid #1566d2; */
|
|
2874
|
+
}
|
|
2875
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-picker .ant-picker-input > input {
|
|
2876
|
+
text-align: left;
|
|
2877
|
+
}
|
|
2878
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input {
|
|
2879
|
+
border-left: none;
|
|
2880
|
+
border-radius: 0px 4px 4px 0px;
|
|
2881
|
+
height: 32px;
|
|
2882
|
+
transition: all 0.3s;
|
|
2883
|
+
}
|
|
2884
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select {
|
|
2885
|
+
width: 100%;
|
|
2886
|
+
}
|
|
2887
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item textarea {
|
|
2888
|
+
resize: none;
|
|
2889
|
+
}
|
|
2890
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-radio-group,
|
|
2891
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-checkbox-group {
|
|
2892
|
+
display: flex;
|
|
2893
|
+
align-items: center;
|
|
2894
|
+
min-height: 32px;
|
|
2895
|
+
border: 1px solid #d9d9d9;
|
|
2896
|
+
border-left: none;
|
|
2897
|
+
border-radius: 0px 4px 4px 0px;
|
|
2898
|
+
transition: all 0.3s;
|
|
2899
|
+
}
|
|
2900
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-control {
|
|
2901
|
+
font-size: 13px;
|
|
2902
|
+
width: calc(100% - 130px);
|
|
2903
|
+
}
|
|
2904
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-label,
|
|
2905
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-label label {
|
|
2906
|
+
background-color: none;
|
|
2907
|
+
}
|
|
2908
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-label > *,
|
|
2909
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-label label > * {
|
|
2910
|
+
cursor: default;
|
|
2911
|
+
}
|
|
2912
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper,
|
|
2913
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-picker,
|
|
2914
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-form-item-control-input-content {
|
|
2915
|
+
/* 这里修改了一下高度 不确定会不会影响到别的页面 */
|
|
2916
|
+
min-height: 32px;
|
|
2917
|
+
}
|
|
2918
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select-single:not(.ant-select-customize-input) .ant-select-selector,
|
|
2919
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-select-selector {
|
|
2920
|
+
transition: all 0.3s;
|
|
2921
|
+
min-height: 32px;
|
|
2922
|
+
}
|
|
2923
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper:focus,
|
|
2924
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-affix-wrapper-focused,
|
|
2925
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input:focus,
|
|
2926
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item .ant-input-focused {
|
|
2927
|
+
border-color: #1566d2 !important;
|
|
2928
|
+
}
|
|
2929
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-form-item-label,
|
|
2930
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-form-item-label label,
|
|
2931
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-select-selector,
|
|
2932
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-picker,
|
|
2933
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input-affix-wrapper,
|
|
2934
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input,
|
|
2935
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item:hover .ant-input-number {
|
|
2936
|
+
border-color: #1566d2;
|
|
2937
|
+
}
|
|
2938
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item {
|
|
2939
|
+
flex: 1;
|
|
2940
|
+
}
|
|
2941
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item .ant-select-selector {
|
|
2942
|
+
padding-right: 8px;
|
|
2943
|
+
}
|
|
2944
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item .ant-select-selector .ant-select-selection-overflow {
|
|
2945
|
+
max-height: 112px;
|
|
2946
|
+
overflow-y: auto;
|
|
2947
|
+
}
|
|
2948
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled .ant-form-item-label,
|
|
2949
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled .ant-form-item-label label {
|
|
2950
|
+
background-color: #f5f5f5;
|
|
2951
|
+
}
|
|
2952
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled .ant-form-item-label > *,
|
|
2953
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled .ant-form-item-label label > * {
|
|
2954
|
+
cursor: not-allowed;
|
|
2955
|
+
}
|
|
2956
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-form-item-label,
|
|
2957
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-form-item-label label,
|
|
2958
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-select-selector,
|
|
2959
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-picker,
|
|
2960
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-input-affix-wrapper,
|
|
2961
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-input,
|
|
2962
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--disabled:hover .ant-input-number {
|
|
2963
|
+
border-color: #cdd9e6;
|
|
2964
|
+
}
|
|
2965
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--required .ant-form-item-label > *,
|
|
2966
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--required .ant-form-item-label label > * {
|
|
2967
|
+
cursor: not-allowed;
|
|
2968
|
+
}
|
|
2969
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--noborder .ant-form-item-label,
|
|
2970
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--noborder .ant-form-item-label label {
|
|
2971
|
+
border: none;
|
|
2972
|
+
}
|
|
2973
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--noborder .ant-radio-group,
|
|
2974
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--noborder .ant-checkbox-group {
|
|
2975
|
+
border: none;
|
|
2976
|
+
min-height: 30px;
|
|
2977
|
+
}
|
|
2978
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-form-item-label,
|
|
2979
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-form-item-label label,
|
|
2980
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-select-selector,
|
|
2981
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-picker,
|
|
2982
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-input-affix-wrapper,
|
|
2983
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-input,
|
|
2984
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-input-number,
|
|
2985
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-checkbox-group,
|
|
2986
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-radio-group {
|
|
2987
|
+
border-left: 1px solid #d9d9d9;
|
|
2988
|
+
border-radius: 4px;
|
|
2989
|
+
}
|
|
2990
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-checkbox-group,
|
|
2991
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabel .ant-radio-group {
|
|
2992
|
+
padding-left: 11px;
|
|
2993
|
+
}
|
|
2994
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabelshowbg .ant-form-item-control-input-content {
|
|
2995
|
+
border: 1px solid #d9d9d9;
|
|
2996
|
+
border-radius: 4px;
|
|
2997
|
+
background: #fff;
|
|
2998
|
+
line-height: 30px;
|
|
2999
|
+
padding-left: 4px;
|
|
3000
|
+
}
|
|
3001
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--nolabelshowbg .ant-form-item-control-input-content:hover {
|
|
3002
|
+
border-color: #1566d2;
|
|
3003
|
+
}
|
|
3004
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--showboxborder.pro-form__item--nolabel .ant-form-item-control-input-content {
|
|
3005
|
+
border-left: 1px solid #d9d9d9;
|
|
3006
|
+
border-radius: 4px;
|
|
3007
|
+
}
|
|
3008
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--showboxborder .ant-form-item-control-input-content {
|
|
3009
|
+
border: 1px solid #d9d9d9;
|
|
3010
|
+
border-left: none;
|
|
3011
|
+
transition: border 0.3s;
|
|
3012
|
+
background: #fff;
|
|
3013
|
+
line-height: 30px;
|
|
3014
|
+
padding-left: 4px;
|
|
3015
|
+
}
|
|
3016
|
+
.pro-form .pro-form__left.pro-form__left--flex .pro-form__item--showboxborder .ant-form-item-control-input-content:hover {
|
|
3017
|
+
border-color: #1566d2;
|
|
3018
|
+
}
|
|
3019
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-form-item-label,
|
|
3020
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-form-item-label label {
|
|
3021
|
+
border-color: #ff8888 !important;
|
|
3022
|
+
}
|
|
3023
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-select-selector {
|
|
3024
|
+
border-color: #ff8888 !important;
|
|
3025
|
+
}
|
|
3026
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-picker {
|
|
3027
|
+
border-color: #ff8888 !important;
|
|
3028
|
+
}
|
|
3029
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-input,
|
|
3030
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-input-affix-wrapper {
|
|
3031
|
+
border-color: #ff8888 !important;
|
|
3032
|
+
}
|
|
3033
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .city-picker-span {
|
|
3034
|
+
border-color: #ff8888 !important;
|
|
3035
|
+
}
|
|
3036
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-radio-group,
|
|
3037
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-checkbox-group {
|
|
3038
|
+
border-color: #ff8888 !important;
|
|
3039
|
+
}
|
|
3040
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .ant-form-item-label,
|
|
3041
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .ant-form-item-label label {
|
|
3042
|
+
border-color: #ff8888 !important;
|
|
3043
|
+
}
|
|
3044
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .ant-select-selector {
|
|
3045
|
+
border-color: #ff8888 !important;
|
|
3046
|
+
}
|
|
3047
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .ant-picker {
|
|
3048
|
+
border-color: #ff8888 !important;
|
|
3049
|
+
}
|
|
3050
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .ant-input,
|
|
3051
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .ant-input-affix-wrapper {
|
|
3052
|
+
border-color: #ff8888 !important;
|
|
3053
|
+
}
|
|
3054
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error:hover .city-picker-span {
|
|
3055
|
+
border-color: #ff8888 !important;
|
|
3056
|
+
}
|
|
3057
|
+
.pro-form .pro-form__left.pro-form__left--flex .ant-form-item-has-error .ant-form-item-margin-offset {
|
|
3058
|
+
margin-bottom: 0 !important;
|
|
3059
|
+
}
|
|
3060
|
+
.pro-form .pro-form__middle {
|
|
3061
|
+
position: relative;
|
|
3062
|
+
margin-right: 10px;
|
|
3063
|
+
}
|
|
3064
|
+
.pro-form .pro-form__middle .pro-form__middle--setting {
|
|
3065
|
+
cursor: pointer;
|
|
3066
|
+
margin-top: 4px;
|
|
3067
|
+
}
|
|
3068
|
+
.pro-form .pro-form__right {
|
|
3069
|
+
display: flex;
|
|
3070
|
+
}
|
|
3071
|
+
.pro-form .pro-form__right > button.ant-btn {
|
|
3072
|
+
margin-left: 10px;
|
|
3073
|
+
margin-right: 0;
|
|
3074
|
+
}
|
|
3075
|
+
.pro-form .pro-form__right > button.ant-btn:first-child {
|
|
3076
|
+
margin-left: 0;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
2075
3079
|
/*# sourceMappingURL=index.css.map */
|