Commit 63e980c7 authored by youjie's avatar youjie

no message

parent be6bad1d
...@@ -312,8 +312,10 @@ ...@@ -312,8 +312,10 @@
color: #2A2A2A; color: #2A2A2A;
line-height: 34px; line-height: 34px;
white-space: wrap; white-space: wrap;
display: inline-block;
padding: 0; padding: 0;
margin: 0; margin: 0;
margin-right: 10px;
} }
.LeaveGroupDownload-form .travelControlTrip .module-title { .LeaveGroupDownload-form .travelControlTrip .module-title {
text-align: center; text-align: center;
......
...@@ -112,7 +112,9 @@ ...@@ -112,7 +112,9 @@
</div> </div>
<div class="travelDaysdetails-text row"> <div class="travelDaysdetails-text row">
<span>住宿:</span> <span>住宿:</span>
<div><p>{{item.jiu2[0].name}}</p></div> <div>
<p v-for="(j,i) in item.jiu2">{{j.name}}</p>
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -287,14 +289,7 @@ ...@@ -287,14 +289,7 @@
}, },
tripList: { tripList: {
handler(val, oldVal) { handler(val, oldVal) {
let arrlist = function(arr){
arr.forEach(x=>{
x.showImgOne = true
x.showImgTwo = true
x.imgMapId = null
})
}
arrlist(this.tripList)
}, },
deep: true, deep: true,
immediate: true immediate: true
......
...@@ -106,8 +106,8 @@ ...@@ -106,8 +106,8 @@
<script> <script>
import html2Canvas from 'html2canvas' import html2Canvas from 'html2canvas'
import LeaveGroupDownload from './LeaveGroupDownload/index' import LeaveGroupDownload from './LeaveGroupDownload/index'
import ItineraryFeatures from './LeaveGroupDownload/ItineraryFeatures' import ItineraryFeatures from './LeaveGroupDownload/ItineraryFeatures'
import travelDays from './LeaveGroupDownload/travelDays' import travelDays from './LeaveGroupDownload/travelDays'
...@@ -797,6 +797,14 @@ ...@@ -797,6 +797,14 @@
}, },
//初始化行程 //初始化行程
initTrip(res, data) { initTrip(res, data) {
let arrlist = function(arr){
arr.forEach(x=>{
x.showImgOne = true
x.showImgTwo = true
x.imgMapId = null
})
}
arrlist(res.data.data.dayList)
this.tripList = res.data.data.dayList; this.tripList = res.data.data.dayList;
this.feature = res.data.data.feature this.feature = res.data.data.feature
this.showType = this.feature.featureType; this.showType = this.feature.featureType;
......
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