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