Commit bedbdd58557612e37fb6368ae358aeed5d2f286c

Authored by monkeyhouyi
1 parent c7155964

1

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