diff --git a/src/api/system/accredit.js b/src/api/system/accredit.js index 48abb51..8083223 100644 --- a/src/api/system/accredit.js +++ b/src/api/system/accredit.js @@ -89,6 +89,13 @@ export function selectFrimary(data) { }) } +export function selectTableList(id) { + return request({ + url: '/system/accredit/selectTableList/'+ id , + method: 'post' + }) +} + export function selStatus(databaseName,tableName) { return request({ url: '/system/accredit/selStatus?databaseName=' + databaseName + '&tableName=' + tableName, diff --git a/src/api/test/testData.js b/src/api/test/testData.js new file mode 100644 index 0000000..e73ed67 --- /dev/null +++ b/src/api/test/testData.js @@ -0,0 +1,9 @@ +import request from '@/utils/request' + +// 查询引擎列表 +export function randomField(id,tableName) { + return request({ + url: '/test/data/randomField?id=' + id + "&tableName=" + tableName, + method: 'get' + }) +} diff --git a/src/views/engine/edition/index.vue b/src/views/engine/edition/index.vue index 0f28ceb..e6f9908 100644 --- a/src/views/engine/edition/index.vue +++ b/src/views/engine/edition/index.vue @@ -149,21 +149,122 @@ - - - {{}} - - - - - - - + + {{selectList.versionClass}} + {{selectList.name}} + {{selectList.versionCode}} + + + + + + + + + + + + + + + + + + +
+ 选择资产结构 +
+ + + + +
+ + +
+ 选择资产模型 +
+ + + 任务 + + +
+ +
+ 选择资产模型 +
+ 数据集 + + + + + + + +
+ +
+ 选择资产模型 +
+ 记录 + + + + + + + + +
+ +
+ 选择资产模型 +
+ 数据字段 + + + + +
+
+ + +
+ 选择字段 +
+ 记录 +
+ +
+ 选择字段 +
+ 字段 + + + {{tab.val}} + +
+
@@ -172,6 +273,8 @@