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