Commit 7f031139 authored by youjie's avatar youjie

no message

parent 4fcf6f31
...@@ -747,7 +747,7 @@ this.dayArray = this.dayArray.filter(item => arr.includes(item.id)) ...@@ -747,7 +747,7 @@ this.dayArray = this.dayArray.filter(item => arr.includes(item.id))
return return
} }
this.CommonJump( this.CommonJump(
"/detail/" + encodeURIComponent(item.id) + "/" + item.tcid, "/detail/" + encodeURIComponent(item.id) + "/" + item.tcid + "/" + item.configId,
{} {}
); );
}, },
......
...@@ -191,6 +191,7 @@ ...@@ -191,6 +191,7 @@
teamType: 0, teamType: 0,
isGetPriceFlight: true, isGetPriceFlight: true,
pType: 1,//类型 1 来源B2C pType: 1,//类型 1 来源B2C
newConfigId: 0,//列表里的configId
}, },
isShow: false, isShow: false,
dataList: {}, dataList: {},
...@@ -221,6 +222,9 @@ ...@@ -221,6 +222,9 @@
if (this.$route.params.tcid) { if (this.$route.params.tcid) {
this.msg.tcid = decodeURIComponent(this.$route.params.tcid) this.msg.tcid = decodeURIComponent(this.$route.params.tcid)
} }
if (this.$route.params.newConfigId) {
this.msg.newConfigId = decodeURIComponent(this.$route.params.newConfigId)
}
}, },
mounted() { mounted() {
if (localStorage.baseifo) { if (localStorage.baseifo) {
......
...@@ -622,6 +622,7 @@ export default { ...@@ -622,6 +622,7 @@ export default {
teamType: 0, teamType: 0,
isGetPriceFlight: true, isGetPriceFlight: true,
pType: 1,//类型 1 来源B2C pType: 1,//类型 1 来源B2C
newConfigId: 0,//列表里的configId
}, },
currentPrice: {}, currentPrice: {},
isShow: false, isShow: false,
...@@ -753,6 +754,9 @@ export default { ...@@ -753,6 +754,9 @@ export default {
if (this.$route.params.tcid) { if (this.$route.params.tcid) {
this.msg.tcid = decodeURIComponent(this.$route.params.tcid); this.msg.tcid = decodeURIComponent(this.$route.params.tcid);
} }
if (this.$route.params.newConfigId) {
this.msg.newConfigId = decodeURIComponent(this.$route.params.newConfigId)
}
}, },
mounted() { mounted() {
window.addEventListener("scroll", this.handleScroll); window.addEventListener("scroll", this.handleScroll);
......
...@@ -1277,6 +1277,7 @@ ...@@ -1277,6 +1277,7 @@
ID: 0, ID: 0,
tcid: 0, tcid: 0,
pType: 1,//类型 1 来源B2C pType: 1,//类型 1 来源B2C
newConfigId: 0,//列表里的configId
}, },
dataList: {}, dataList: {},
scrollobj: null, scrollobj: null,
......
...@@ -1012,6 +1012,7 @@ ...@@ -1012,6 +1012,7 @@
isDes:0, isDes:0,
NewId:'', NewId:'',
pType: 1,//类型 1 来源B2C pType: 1,//类型 1 来源B2C
newConfigId: 0,//列表里的configId
}, },
showMapType:0, showMapType:0,
dataList: {}, dataList: {},
......
...@@ -37,7 +37,7 @@ const routes = [{ ...@@ -37,7 +37,7 @@ const routes = [{
component: () => component: () =>
import ('pages/detailsHotal.vue') import ('pages/detailsHotal.vue')
}, { // 旅程 }, { // 旅程
path: '/detail/:id/:tcid', path: '/detail/:id/:tcid/:newConfigId',
component: () => component: () =>
import ('pages/detailsNew.vue') import ('pages/detailsNew.vue')
}, { }, {
......
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