Commit 428c7459 authored by 黄奎's avatar 黄奎

新增参数

parent 6506f975
...@@ -886,7 +886,9 @@ ...@@ -886,7 +886,9 @@
PriceTagIds:[], PriceTagIds:[],
PriceFlight: JSON.parse( PriceFlight: JSON.parse(
JSON.stringify(this.PostConfig.FlightList) JSON.stringify(this.PostConfig.FlightList)
) ),
customId:this.PostConfig.customId,
allotId:this.PostConfig.allotId,
}; };
} }
this.returnPriceList.push(objItem); this.returnPriceList.push(objItem);
......
...@@ -119,6 +119,8 @@ ...@@ -119,6 +119,8 @@
//是否更新酒店库存 //是否更新酒店库存
IsUpdateHotel:0, IsUpdateHotel:0,
OpenTeamDescribe:"",//开团备注 OpenTeamDescribe:"",//开团备注
customId:0,
allotId:0,
}, },
//行程 //行程
FeatureData: { FeatureData: {
...@@ -247,7 +249,6 @@ ...@@ -247,7 +249,6 @@
//行程回调 //行程回调
getDaysTrip(tripObj) { getDaysTrip(tripObj) {
this.PostDaysTrip = tripObj; this.PostDaysTrip = tripObj;
console.log("this.PostDaysTrip",this.PostDaysTrip);
}, },
/*获取行程特色内容对象*/ /*获取行程特色内容对象*/
getFeature(featureObj) { getFeature(featureObj) {
...@@ -578,7 +579,7 @@ ...@@ -578,7 +579,7 @@
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
var tempData = res.data.data; var tempData = res.data.data;
console.log("tempData",tempData);
if (tempData.Feature != null) { if (tempData.Feature != null) {
this.FeatureData.ID = tempData.Feature.ID; this.FeatureData.ID = tempData.Feature.ID;
this.FeatureData.ConfigId = tempData.Feature.ConfigId; this.FeatureData.ConfigId = tempData.Feature.ConfigId;
...@@ -744,6 +745,12 @@ ...@@ -744,6 +745,12 @@
}, },
watch: {}, watch: {},
mounted() { mounted() {
if (this.$route.query.customId) {
this.PostDaysTrip.customId = this.$route.query.customId;
}
if (this.$route.query.allotId) {
this.PostDaysTrip.allotId = this.$route.query.allotId;
}
this.ScrollMethod(); this.ScrollMethod();
}, },
created() { created() {
......
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