Commit 90d9c96d authored by 黄奎's avatar 黄奎

页面修改

parent 02159d1c
......@@ -1959,7 +1959,7 @@
res => {
if (res.data.resultCode == 1) {
this.roomlist = res.data.data;
console.log(" this.roomlist", this.roomlist)
if (this.roomlist.length < 1) {
this.UpdateOrderHouseBtn = true
}
......
......@@ -155,7 +155,7 @@
},
mounted() {
console.log(this.day,'dayyyyy');
}
};
......
......@@ -401,9 +401,6 @@
</td>
</tr>
</table>
<div v-if='vshowB' class="newTripFeiyongtitle">
<h2>航班信息</h2>
<div class="newTripLine"></div>
......@@ -471,7 +468,14 @@
<div v-if="(showType>=4)&&loadNone==false&&vshowC" class="newFeature" v-html="feature.featureHtml"></div>
<div class="newtripList" v-for="(item,index) in tripList" :key="index">
<div class="newTripFly" style="margin-bottom:10px;">DAY {{item.dayNum}}</div>
<template v-if="item.dayNum<10">
<div class="newTripFly" style="margin-bottom:10px;">
DAY 0{{item.dayNum}}
</div>
</template>
<template v-else>
DAY {{item.dayNum}}
</template>
<div class="newTripDateTime">{{item.dateTime}}</div>
<div class="newTripFly" v-if="item.title" :class="getTitle(item.title)!=''?'newTripKuang':''">
{{getTitle(item.title)}}
......@@ -489,8 +493,10 @@
<div>
<table class="newTripTable" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="width:42%">
<label>酒店:</label>
<td style="width:7%">
<label>酒店:</label>
</td>
<td style="width:40%">
<template v-if='item.jiu2.length>0'>
<span v-for="(t,k) in item.jiu2" style="cursor: pointer" :key="k">
{{k==item.jiu2.length-1? (t.newTitle!=''&& t.newTitle!=t.name?t.newTitle:t.name) : (t.newTitle!=''&& t.newTitle!=t.name?t.newTitle:t.name)+' / ' }}
......@@ -500,19 +506,22 @@
{{getHotelSuffix(item)}}
</template>
</td>
<td style="width:30%">
<div class="tripLeftCan" style="vertical-align:top;">
<td style="width:7%">
<div class="tripLeftCan" style="vertical-align:top;">
<label>用餐:</label>
</div>
</td>
<td style="width:27%">
<div class="tripRightCan">
<!-- <div>无</div> -->
<div>早({{item.can.breakfirst}})</div>
<div>中({{item.can.lanuch}})</div>
<div>晚({{item.can.dinner}})</div>
</div>
</td>
<td style="width:25%">
<label>交通:</label>
<td style="width:7%">
<label>交通:</label>
</td>
<td style="width:15%">
<template v-if="item.trafficArray&& item.trafficArray.length>0" v-for="(subItem,subIndex) in item.trafficArray">
<span>{{subItem}}</span>
<template v-if="subIndex!=item.trafficArray.length-1">
......@@ -1296,7 +1305,6 @@
x.islast = (j + 1) == this.tripList.length;
this.$set(this.tripList, j, x);
x.dateTime = this.setDate(j);
console.log(this.tripList,'triplist');
})
},
//遍历字符串书否有null
......
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