Commit 772c8d05 authored by zhengke's avatar zhengke

修改

parent b4c413e3
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
<el-dialog custom-class="w800" :title="$t('sm.xingchengditu')" :visible.sync="isShowMap" center> <el-dialog custom-class="w800" :title="$t('sm.xingchengditu')" :visible.sync="isShowMap" center>
<TravelMap :dataList="travelLngLat"></TravelMap> <TravelMap :dataList="travelLngLat"></TravelMap>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="isShowMap = false">{{$t('sm.closeSel')}}</button> <button class="hollowFixedBtn" @click="isShowMap = false">{{$t('pub.closeSel')}}</button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
...@@ -598,7 +598,8 @@ ...@@ -598,7 +598,8 @@
msg, msg,
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
...@@ -636,7 +637,7 @@ ...@@ -636,7 +637,7 @@
this.FeatureData.Subtitle = tempData.LtName this.FeatureData.Subtitle = tempData.LtName
this.FeatureData.LineName = tempData.LineName this.FeatureData.LineName = tempData.LineName
this.FeatureData.DayList = tempData.DayList2 this.FeatureData.DayList = tempData.DayList
this.ConfigId = tempData.ID this.ConfigId = tempData.ID
//HK 2019-01-08添加 NewConfigId B2B预览使用 //HK 2019-01-08添加 NewConfigId B2B预览使用
...@@ -685,11 +686,11 @@ ...@@ -685,11 +686,11 @@
this.journeyList.NightNum = tempData.NightNum this.journeyList.NightNum = tempData.NightNum
this.journeyList.ReturnArriveCityId = tempData.ReturnArriveCityId this.journeyList.ReturnArriveCityId = tempData.ReturnArriveCityId
this.journeyList.StartCityId = tempData.StartCityId this.journeyList.StartCityId = tempData.StartCityId
this.journeyList.DayList = tempData.DayList2; this.journeyList.DayList = tempData.DayList;
this.PostDaysTrip.TrafficList = []; this.PostDaysTrip.TrafficList = [];
if (tempData.DayList2&& tempData.DayList2.length>0) { if (tempData.DayList&& tempData.DayList.length>0) {
tempData.DayList2.forEach(item => { tempData.DayList.forEach(item => {
this.PostDaysTrip.TrafficList.push(item.TrafficObj); this.PostDaysTrip.TrafficList.push(item.TrafficObj);
}) })
} }
......
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