fix: close unclosed fragments in Expenses/Deposits, fix brace in Bills
This commit is contained in:
@@ -114,7 +114,6 @@ const BillsPage: React.FC = () => {
|
|||||||
setDetailModal(res);
|
setDetailModal(res);
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
message.error(e?.message || '加载详情失败');
|
message.error(e?.message || '加载详情失败');
|
||||||
}
|
|
||||||
} finally {
|
} finally {
|
||||||
setDetailLoading(false);
|
setDetailLoading(false);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -441,6 +441,7 @@ const DepositsPage: React.FC = () => {
|
|||||||
scroll={{ x: 1200 }}
|
scroll={{ x: 1200 }}
|
||||||
pagination={{ pageSize: 15, showTotal: (total) => `共 ${total} 条` }}
|
pagination={{ pageSize: 15, showTotal: (total) => `共 ${total} 条` }}
|
||||||
/>
|
/>
|
||||||
|
</>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -451,6 +451,7 @@ const ExpensesPage: React.FC = () => {
|
|||||||
onChange: (keys) => setSelectedRoomKeys(keys as number[]),
|
onChange: (keys) => setSelectedRoomKeys(keys as number[]),
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user