Commit 63e980c7 authored by youjie's avatar youjie

no message

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