Commit 4ef40476 authored by 黄奎's avatar 黄奎

酒店库存修改

parent 8b71372f
...@@ -3,21 +3,21 @@ ...@@ -3,21 +3,21 @@
</style> </style>
<template> <template>
<div class="commonPriceHotelInfo"> <div class="commonPriceHotelInfo">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="singeRowTable" v-loading="loading">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="singeRowTable" v-loading="loading"> <tr>
<tr> <th width="100">日期</th>
<th width="100">日期</th> <th width="135">占房时间</th>
<th width="135">占房时间</th> <th width="120">团期</th>
<th width="120">团期</th> <th width="80">总库存</th>
<th width="80">库存</th> <th width="80">使用库存</th>
<th width="80">使用库存</th> <th width="80">状态</th>
<th width="80">状态</th> </tr>
</tr> <template v-if="HotelPriceList.length>0">
<tr v-for="(item,index) in HotelPriceList"> <tr v-for="(item,index) in HotelPriceList">
<td> <td>
{{item.UseTimeStr}} {{item.UseTimeStr}}
</td> </td>
<td> <td>
{{item.CreateTimeStr}} {{item.CreateTimeStr}}
</td> </td>
<td> <td>
...@@ -34,7 +34,15 @@ ...@@ -34,7 +34,15 @@
<template v-else><span style="color:red;">暂定</span></template> <template v-else><span style="color:red;">暂定</span></template>
</td> </td>
</tr> </tr>
</table> </template>
<template v-else>
<tr>
<td colspan="6">
<span style="color:red;"> 暂无库存使用记录.</span>
</td>
</tr>
</template>
</table>
</div> </div>
</template> </template>
<script> <script>
......
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