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

页面修改

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