This commit is contained in:
ylj20011123 2025-12-05 18:53:08 +08:00
parent 588e291ec8
commit 27712ec067
3 changed files with 1069 additions and 15 deletions

View File

@ -69,7 +69,7 @@ const DigitalElectronics: React.FC<{ currentUser: any }> = (props) => {
dataIndex: "searchText",
hideInTable: true,
fieldProps: {
placeholder: "请输入经办人/单据号/金额",
placeholder: "请输入经办人/单据号",
}
},
{

File diff suppressed because it is too large Load Diff

View File

@ -4,9 +4,34 @@
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px; // Add spacing between items
margin-top: 30px;
.operatingModelModalItemBox {
width: 50%;
width: calc(50% - 5px); // Adjust width to accommodate gap
padding: 20px;
text-align: center;
border: 1px solid #d9d9d9;
border-radius: 4px;
cursor: pointer;
// margin-bottom: 10px; // This can now be handled by gap
transition: all 0.3s ease;
&:hover {
border-color: #1890ff;
background-color: #e6f7ff;
}
&.selected {
border-color: #1890ff;
background-color: #e6f7ff;
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
}
}
}
.rentCalculateModalContent::-webkit-scrollbar {
display: none;
}