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

新增参数

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