09082110:规则引擎查询资产展示的修改

master
冷调 2024-09-08 21:10:53 +08:00
parent 1703942966
commit 3b4bef141d
1 changed files with 4 additions and 3 deletions

View File

@ -414,7 +414,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
size="mini" size="mini"
@click="handleEditSelect()">选择 @click="handleEditSelect(scope.row)">选择
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
@ -553,8 +553,9 @@ export default {
}, },
methods: { methods: {
// //
handleEditSelect() { handleEditSelect(data) {
findTableValueByTableName(this.tableOrigin.basicId, this.tableOrigin.tableName).then(res => { alert(data);
findTableValueByTableName(data.basicId, data.tableName).then(res => {
console.log(res.data) console.log(res.data)
this.tableDatas = res.data this.tableDatas = res.data
console.log(this.tableDatas) console.log(this.tableDatas)