Browse Source

reset 回滚 错误修复

疯狂的狮子Li 9 months ago
parent
commit
358f11a0a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/tool/gen/index.vue

+ 1 - 1
src/views/tool/gen/index.vue

@@ -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('同步成功');
 };