diff --git a/src/views/wpm_gx/checkrecord.vue b/src/views/wpm_gx/checkrecord.vue index 95cb7cf2..ec976d12 100644 --- a/src/views/wpm_gx/checkrecord.vue +++ b/src/views/wpm_gx/checkrecord.vue @@ -87,12 +87,21 @@ > @@ -159,7 +168,17 @@ export default { }); }).catch(() => {}); }, - + check_delete(row){ + let that = this; + this.$confirm(`确定删除该检验吗?`, "提示", { + type: "warning", + }).then(() => { + that.$API.qm.ftestwork.delete.req(row.id).then((res) => { + this.$refs.table.refresh(); + }) + }) + + }, handleQuery() { this.$refs.table.queryData(this.query); },