From f3a92cb296d3aad39e9b61f8aabcb3eee371ec6a Mon Sep 17 00:00:00 2001 From: shijing Date: Fri, 24 Jul 2026 08:59:53 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E5=85=89=E8=8A=AF=E7=94=9F?= =?UTF-8?q?=E4=BA=A7=E6=89=A7=E8=A1=8C=E4=B8=AD=E7=9A=84=E6=A3=80=E9=AA=8C?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=8F=AF=E4=BB=A5=E6=92=A4=E5=9B=9E=E5=B9=B6?= =?UTF-8?q?=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_gx/checkrecord.vue | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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); },