Commit 28dc9219 authored by 黄奎's avatar 黄奎

页面修改

parent b820706b
...@@ -1047,6 +1047,7 @@ ...@@ -1047,6 +1047,7 @@
cityId: this.$route.query.cityId, cityId: this.$route.query.cityId,
tcid: this.$route.query.tcid, tcid: this.$route.query.tcid,
orderId: this.$route.query.orderId, orderId: this.$route.query.orderId,
unionfid: this.$route.query.unionfid,
FileName: title, FileName: title,
//是否显示基础信息 //是否显示基础信息
isShowBase: this.vshowA ? 1 : 0, isShowBase: this.vshowA ? 1 : 0,
...@@ -1120,6 +1121,7 @@ ...@@ -1120,6 +1121,7 @@
cityId: this.$route.query.cityId, cityId: this.$route.query.cityId,
tcid: this.$route.query.tcid, tcid: this.$route.query.tcid,
orderId: this.$route.query.orderId, orderId: this.$route.query.orderId,
unionfid: this.$route.query.unionfid,
FileName: title, FileName: title,
//是否显示基础信息 //是否显示基础信息
isShowBase: this.vshowA ? 1 : 0, isShowBase: this.vshowA ? 1 : 0,
...@@ -1189,6 +1191,7 @@ ...@@ -1189,6 +1191,7 @@
cityId: this.$route.query.cityId, cityId: this.$route.query.cityId,
tcid: this.$route.query.tcid, tcid: this.$route.query.tcid,
orderId: this.$route.query.orderId, orderId: this.$route.query.orderId,
unionfid: this.$route.query.unionfid,
FileName: title, FileName: title,
//是否显示基础信息 //是否显示基础信息
isShowBase: this.vshowA ? 1 : 0, isShowBase: this.vshowA ? 1 : 0,
...@@ -1238,6 +1241,7 @@ ...@@ -1238,6 +1241,7 @@
cityId: this.$route.query.cityId, cityId: this.$route.query.cityId,
tcid: this.$route.query.tcid, tcid: this.$route.query.tcid,
orderId: this.$route.query.orderId, orderId: this.$route.query.orderId,
unionfid: this.$route.query.unionfid,
FileName: title, FileName: title,
//是否显示基础信息 //是否显示基础信息
isShowBase: this.vshowA ? 1 : 0, isShowBase: this.vshowA ? 1 : 0,
...@@ -1312,12 +1316,17 @@ ...@@ -1312,12 +1316,17 @@
return iDays return iDays
}, },
init() { init() {
var unionfid = 0;
if (this.$route.query.unionfid) {
unionfid = this.$route.query.unionfid;
}
this.apipost('b2b_get_GetB2BTravelInfoNoDes', { this.apipost('b2b_get_GetB2BTravelInfoNoDes', {
configId: this.$route.query.configId, configId: this.$route.query.configId,
cityId: this.$route.query.cityId, cityId: this.$route.query.cityId,
tcid: this.$route.query.tcid, tcid: this.$route.query.tcid,
orderId: this.$route.query.orderId, orderId: this.$route.query.orderId,
isClick: this.isClick //不算统计 isClick: this.isClick, //不算统计
unionfid: unionfid,
}, res => { }, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let data = (res.data.data); let data = (res.data.data);
......
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