1
@@ -135,9 +135,13 @@ export default {
},
computed:{
onExport(){
- return {
- ...this.searchForm
- }
+ const { timer, ...rest } = this.searchForm;
+ let obj = {
+ ...rest,
+ ...getTimes(timer, ["startDate", "endDate"]),
+
+ }
+ return obj
}