Parcourir la source

perf: 优化代码生成器

xingyu il y a 2 ans
Parent
commit
073b3048d1
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      yudao-ui-admin-vue3/src/views/infra/codegen/EditTable.vue

+ 1 - 1
yudao-ui-admin-vue3/src/views/infra/codegen/EditTable.vue

@@ -48,8 +48,8 @@ const getList = async () => {
   if (id) {
     // 获取表详细信息
     const res = await getCodegenTableApi(id)
-    tableCurrentRow.value = res.table
     title.value = '修改[ ' + res.table.tableName + ' ]生成配置'
+    tableCurrentRow.value = res.table
     cloumCurrentRow.value = res.columns
   }
 }