feat: 批量去除 vo

This commit is contained in:
xingyu4j
2025-06-15 15:33:18 +08:00
parent 96c4ee974a
commit 93a02573d7
64 changed files with 240 additions and 251 deletions

View File

@@ -21,7 +21,7 @@ const [WalletModal, walletModalApi] = useVbenModal({
destroyOnClose: true,
});
function handleDetail(row: Required<PayWalletApi.WalletVO>) {
function handleDetail(row: Required<PayWalletApi.Wallet>) {
walletModalApi.setData(row).open();
}
@@ -51,7 +51,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
refresh: { code: 'query' },
search: true,
},
} as VxeTableGridOptions<PayWalletApi.WalletVO>,
} as VxeTableGridOptions<PayWalletApi.Wallet>,
});
</script>

View File

@@ -15,7 +15,7 @@ const [Modal, modalApi] = useVbenModal({
return;
}
// 加载数据
const data = modalApi.getData<PayWalletApi.WalletVO>();
const data = modalApi.getData<PayWalletApi.Wallet>();
if (!data || !data.id) {
return;
}