From 5f0c43e410c40497000ae4aca2a3baf41808648d Mon Sep 17 00:00:00 2001 From: huangchengfa <171504222@qq.com> Date: Wed, 10 Dec 2025 23:27:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E7=AD=BE=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../JudgmentHome/judgmentCommand/index.vue | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/views/backOfficeSystem/JudgmentHome/judgmentCommand/index.vue b/src/views/backOfficeSystem/JudgmentHome/judgmentCommand/index.vue index 796517c..bf15a69 100644 --- a/src/views/backOfficeSystem/JudgmentHome/judgmentCommand/index.vue +++ b/src/views/backOfficeSystem/JudgmentHome/judgmentCommand/index.vue @@ -30,6 +30,7 @@ 修改 详情 删除 + 签收 { proxy.$message.info('已取消删除'); }); } +const sign = (row) => { + proxy.$confirm('确定签收吗?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + signCommand({ zlid: row.id }).then(res => { + proxy.$message.success('签收成功'); + getList(); + }).catch(() => { + proxy.$message.error('签收失败'); + }); + }).catch(() => { + proxy.$message.info('已取消签收'); + }); +}