Commit bedbdd58557612e37fb6368ae358aeed5d2f286c

Authored by monkeyhouyi
1 parent c7155964

1

src/views/DisposalSuggestions/index.vue
@@ -352,6 +352,7 @@ export default { @@ -352,6 +352,7 @@ export default {
352 method: "POST", 352 method: "POST",
353 data: { 353 data: {
354 ...this.query, 354 ...this.query,
  355 + creatorTime: this.query.creatorTime.toString(),
355 }, 356 },
356 }; 357 };
357 request(obj).then((res) => { 358 request(obj).then((res) => {
src/views/baseInspectionReport/index.vue
@@ -232,7 +232,10 @@ @@ -232,7 +232,10 @@
232 obj = { 232 obj = {
233 url: '/Extend/BaseInspectionReport/Actions/Export', 233 url: '/Extend/BaseInspectionReport/Actions/Export',
234 method: "POST", 234 method: "POST",
235 - data: this.query, 235 + data: {
  236 + ...this.query,
  237 + creatorTime: this.query.creatorTime.toString(),
  238 + },
236 } 239 }
237 } 240 }
238 request(obj).then((res) => { 241 request(obj).then((res) => {