Commit 772c8d05 authored by zhengke's avatar zhengke

修改

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