09082110:规则引擎查询资产展示的修改
parent
1703942966
commit
3b4bef141d
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue