Commit a5ac14c95661bcd7f62dc3bab07693539a05eb34

Authored by 曾国涛
1 parent 59fd66b7

chore(release): 调整发票记录明细模态框中的按钮间距。

在`InvoiceRecordDetailModal`组件中,更新了按钮间距属性,以优化用户界面布局。通过引入定制的间距参数,增强了视觉一致性,并确保了与设计规范的对齐。
src/pages/Invoice/InvoiceRecord/components/InvoiceRecordDetailModal.tsx
... ... @@ -254,7 +254,7 @@ export default ({ id, setVisible, reloadTable }) => {
254 254 itemRender={({}, { record }) => {
255 255 console.log('record' + JSON.stringify(record));
256 256 return (
257   - <Space>
  257 + <Space size={[8, 16]} wrap>
258 258 <Button
259 259 key={record.mainId}
260 260 className="pl-1 pr-0"
... ...