From 358f11a0a3536391348e5466b8f8a000d3bd22e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Sat, 27 Jul 2024 15:07:33 +0800 Subject: [PATCH] =?UTF-8?q?reset=20=E5=9B=9E=E6=BB=9A=20=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tool/gen/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/tool/gen/index.vue b/src/views/tool/gen/index.vue index 1b7cd55..2618a20 100644 --- a/src/views/tool/gen/index.vue +++ b/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('同步成功'); };