From 44e8683cd5a177d89a75982043671e4ca6f1463c Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 20 Apr 2022 17:50:18 +0800 Subject: [PATCH] BUG 29196 --- project/sanjianxi/apps/AppHelpByNeighbours/hbnAuditList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/sanjianxi/apps/AppHelpByNeighbours/hbnAuditList.vue b/project/sanjianxi/apps/AppHelpByNeighbours/hbnAuditList.vue index f4c80d55..a9bca45a 100644 --- a/project/sanjianxi/apps/AppHelpByNeighbours/hbnAuditList.vue +++ b/project/sanjianxi/apps/AppHelpByNeighbours/hbnAuditList.vue @@ -100,7 +100,7 @@ export default { }) }, handleAudit(row) { - this.form = JSON.parse(JSON.stringify(row)) + this.form = JSON.parse(JSON.stringify({...row, status: null})) this.dialog = true } },