reset 回滚 错误修复

This commit is contained in:
疯狂的狮子Li 2024-07-27 15:07:33 +08:00
parent 6a83ed2aad
commit 358f11a0a3

View File

@ -202,7 +202,7 @@ const handleGenTable = async (row?: TableVO) => {
/** 同步数据库操作 */
const handleSynchDb = async (row: TableVO) => {
const tableId = row.tableId;
await proxy?.$modal.confirm('确认要强制同步"' + row.tableName + '"表结构吗?').catch(() => {});
await proxy?.$modal.confirm('确认要强制同步"' + row.tableName + '"表结构吗?');
await synchDb(tableId);
proxy?.$modal.msgSuccess('同步成功');
};