Commit a685aed2 authored by youjie's avatar youjie

no message

parent 7f031139
...@@ -1309,6 +1309,7 @@ ...@@ -1309,6 +1309,7 @@
mounted() { mounted() {
this.msg.ID = this.$route.query.ID; this.msg.ID = this.$route.query.ID;
this.msg.tcid = this.$route.query.tcid; this.msg.tcid = this.$route.query.tcid;
this.msg.newConfigId = this.$route.query.newConfigId;
this.crtnav = 'tripLine'; this.crtnav = 'tripLine';
this.getTrip(); this.getTrip();
...@@ -1319,6 +1320,7 @@ ...@@ -1319,6 +1320,7 @@
query: { query: {
ID: decodeURIComponent(this.msg.ID), ID: decodeURIComponent(this.msg.ID),
tcid: decodeURIComponent(this.msg.tcid), tcid: decodeURIComponent(this.msg.tcid),
newConfigId: decodeURIComponent(this.msg.newConfigId)
} }
}); });
} }
......
...@@ -1041,13 +1041,15 @@ ...@@ -1041,13 +1041,15 @@
this.isInChina() this.isInChina()
this.msg.ID = this.$route.query.ID; this.msg.ID = this.$route.query.ID;
this.msg.tcid = this.$route.query.tcid; this.msg.tcid = this.$route.query.tcid;
this.msg.newConfigId = this.$route.query.newConfigId;
//判断为pc端 //判断为pc端
if(this.$q.platform.is.desktop){ if(this.$q.platform.is.desktop){
this.$router.push({ this.$router.push({
path: 'newTrip', path: 'newTrip',
query: { query: {
ID: decodeURIComponent(this.msg.ID), ID: decodeURIComponent(this.msg.ID),
tcid: decodeURIComponent(this.msg.tcid) tcid: decodeURIComponent(this.msg.tcid),
newConfigId: decodeURIComponent(this.msg.newConfigId)
} }
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment