Compare commits

..

No commits in common. "dbafb70daf46838f6c35ddccbbbe3402eb0c6380" and "ecead0f5bf6a6beab9e9b5e866db9ca827492343" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ export function extractDataName() {
export function selectByTableName(tableName) {
return request({
url: `/integration/task/selectByTableName?tableName=`+tableName,
url: '/integration/task/selectByTableName?tableName='+tableName,
method: 'post',
})
}

View File

@ -140,11 +140,11 @@ export default {
},
nextOne(){
let tableAsField = this.tableMsg.tableAsField;
let tableName = this.tableMsg.tableName.toString();
let tableName = this.tableMsg.tableName;
selectByTableName(tableName).then(res => {
this.dialogVisible1 = true
this.tableData = res.data
console.log(res);
this.dialogVisible1 = true
this.tableData = res.data
console.log(res);
})
this.dialogVisible = false
},