|
@@ -281,11 +281,10 @@ export default {
|
|
|
this.loading = true;
|
|
|
// console.log(this.$route.query);
|
|
|
if (Object.keys(this.$route.query).length !== 0) {
|
|
|
- const { startTime, endTime, destination, proxyId } =
|
|
|
- this.$route.query;
|
|
|
+ const { startTime, endTime, place, proxyId } = this.$route.query;
|
|
|
this.FormData.startTime = startTime;
|
|
|
this.FormData.endTime = endTime;
|
|
|
- this.FormData.destination = destination;
|
|
|
+ this.FormData.place = place;
|
|
|
this.FormData.proxyId = proxyId;
|
|
|
}
|
|
|
const result = await agent(this.FormData);
|