From bedbdd58557612e37fb6368ae358aeed5d2f286c Mon Sep 17 00:00:00 2001 From: monkeyhouyi Date: Sun, 20 Oct 2024 23:28:53 +0800 Subject: [PATCH] 1 --- src/views/DisposalSuggestions/index.vue | 1 + src/views/baseInspectionReport/index.vue | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/DisposalSuggestions/index.vue b/src/views/DisposalSuggestions/index.vue index 652ab54..e7a821f 100644 --- a/src/views/DisposalSuggestions/index.vue +++ b/src/views/DisposalSuggestions/index.vue @@ -352,6 +352,7 @@ export default { method: "POST", data: { ...this.query, + creatorTime: this.query.creatorTime.toString(), }, }; request(obj).then((res) => { diff --git a/src/views/baseInspectionReport/index.vue b/src/views/baseInspectionReport/index.vue index 647a42d..b0555b8 100644 --- a/src/views/baseInspectionReport/index.vue +++ b/src/views/baseInspectionReport/index.vue @@ -232,7 +232,10 @@ obj = { url: '/Extend/BaseInspectionReport/Actions/Export', method: "POST", - data: this.query, + data: { + ...this.query, + creatorTime: this.query.creatorTime.toString(), + }, } } request(obj).then((res) => { -- libgit2 0.21.4