From c9e01879caaf914c33adbaaab68219d7b88d2b07 Mon Sep 17 00:00:00 2001
From: linjiaru <15988824557@163.com>
Date: 星期二, 23 三月 2021 16:22:02 +0800
Subject: [PATCH] beanUtil.copy参数顺序反了
---
ruoyi-ui/src/views/tool/gen/editTable.vue | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/ruoyi-ui/src/views/tool/gen/editTable.vue b/ruoyi-ui/src/views/tool/gen/editTable.vue
index 62a8314..94d0ef3 100644
--- a/ruoyi-ui/src/views/tool/gen/editTable.vue
+++ b/ruoyi-ui/src/views/tool/gen/editTable.vue
@@ -113,7 +113,7 @@
</el-table>
</el-tab-pane>
<el-tab-pane label="鐢熸垚淇℃伅" name="genInfo">
- <gen-info-form ref="genInfo" :info="info" :menus="menus"/>
+ <gen-info-form ref="genInfo" :info="info" :tables="tables" :menus="menus"/>
</el-tab-pane>
</el-tabs>
<el-form label-width="100px">
@@ -144,6 +144,8 @@
activeName: "cloum",
// 琛ㄦ牸鐨勯珮搴�
tableHeight: document.documentElement.scrollHeight - 245 + "px",
+ // 琛ㄤ俊鎭�
+ tables: [],
// 琛ㄥ垪淇℃伅
cloumns: [],
// 瀛楀吀淇℃伅
@@ -161,6 +163,7 @@
getGenTable(tableId).then(res => {
this.cloumns = res.data.rows;
this.info = res.data.info;
+ this.tables = res.data.tables;
});
/** 鏌ヨ瀛楀吀涓嬫媺鍒楄〃 */
getDictOptionselect().then(response => {
--
Gitblit v1.9.3