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

master
冷调 2024-09-08 21:27:53 +08:00
parent 3e9e389862
commit 52c389868e
1 changed files with 9 additions and 4 deletions

View File

@ -422,8 +422,12 @@
</template>
</div>
<span>
<el-button type="primary" @click="measurements()"> </el-button>
<template slot-scope="scope">
<el-button
type="primary"
@click="measurements(scope.row)">测试
</el-button>
</template>
</span>
</el-card>
</el-col>
@ -561,8 +565,9 @@ export default {
})
},
//
measurements() {
measurement(this.form).then(res => {
measurements(data) {
this.form=data
measurement(data).then(res => {
this.$modal.msgSuccess("操作成功");
})
},