Commit c1ea1547 authored by 吴春's avatar 吴春

提交行李数量展示效果

parent 46b76d73
...@@ -1763,7 +1763,7 @@ ...@@ -1763,7 +1763,7 @@
<span v-for="(childItem) in item.guestList">{{childItem.userName}}&nbsp;&nbsp;</span> <span v-for="(childItem) in item.guestList">{{childItem.userName}}&nbsp;&nbsp;</span>
</span> </span>
<span style="display: block">房间信息:{{item.orderGuestHouseStr}}</span> <span style="display: block">房间信息:{{item.orderGuestHouseStr}}</span>
<p>行李数量:{{item.luggageNum}}</p> <p v-if="item.luggageNum">行李数量:{{item.luggageNum}}</p>
<span v-if="item.tipMoney" style="color:red">(小费:{{item.tipMoney}})</span> <span v-if="item.tipMoney" style="color:red">(小费:{{item.tipMoney}})</span>
</td> </td>
</tr> </tr>
......
...@@ -1691,7 +1691,7 @@ ...@@ -1691,7 +1691,7 @@
</span> </span>
<span style="display: block">{{$t('salesModule.RoomInfo')}}:{{item.orderGuestHouseStr}}</span> <span style="display: block">{{$t('salesModule.RoomInfo')}}:{{item.orderGuestHouseStr}}</span>
<p >行李数量:{{item.luggageNum}}</p> <p v-if="item.luggageNum">行李数量:{{item.luggageNum}}</p>
<span v-if="item.tipMoney" style="color:red">({{$t('fnc.xiaofei')}}:{{item.tipMoney}})</span> <span v-if="item.tipMoney" style="color:red">({{$t('fnc.xiaofei')}}:{{item.tipMoney}})</span>
<div v-if="item.otherContractList"> <div v-if="item.otherContractList">
<span class="GO_Contract" style="color:blue;cursor:pointer;" @click="goSingleContract(item)"> <span class="GO_Contract" style="color:blue;cursor:pointer;" @click="goSingleContract(item)">
......
...@@ -2712,7 +2712,7 @@ ...@@ -2712,7 +2712,7 @@
style="color: #f56c6c; margin-left: 20px; cursor: pointer">{{ $t("ground.tuiJingdian") }}</span> style="color: #f56c6c; margin-left: 20px; cursor: pointer">{{ $t("ground.tuiJingdian") }}</span>
</el-popover> </el-popover>
</span> </span>
<p v-if="childItem.IsOneDay==1">行李数量:{{childItem.LuggageNum}}</p> <p v-if="childItem.IsOneDay==1&&childItem.LuggageNum">行李数量:{{childItem.LuggageNum}}</p>
<div> <div>
<span v-if=" <span v-if="
......
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