Commit 6d892122 authored by 黄奎's avatar 黄奎

页面修改

parent d85014ba
...@@ -439,7 +439,7 @@ ...@@ -439,7 +439,7 @@
</el-form-item> </el-form-item>
</div> </div>
<div class="resDiv"> <div class="resDiv">
<el-form-item :label="$t('hotel.hotel_SalesPrice')" prop="SalesPrice"> <el-form-item label="原价" prop="SalesPrice">
<el-input type="text" class="w210" v-model="addMsg.SalesPrice" @keyup.native="checkPrice(addMsg,'SalesPrice')"></el-input> <el-input type="text" class="w210" v-model="addMsg.SalesPrice" @keyup.native="checkPrice(addMsg,'SalesPrice')"></el-input>
</el-form-item> </el-form-item>
<el-form-item :label="$t('hotel.hotel_Supplier')" v-if="IsSelfBook==1" prop="Supplier"> <el-form-item :label="$t('hotel.hotel_Supplier')" v-if="IsSelfBook==1" prop="Supplier">
......
...@@ -275,6 +275,9 @@ ...@@ -275,6 +275,9 @@
style="border-collapse:separate;border-spacing:0px 10px;table-layout:fixed;"> style="border-collapse:separate;border-spacing:0px 10px;table-layout:fixed;">
<tr> <tr>
<th>名称</th> <th>名称</th>
<th>入住人数</th>
<th>床型/早餐</th>
<th>是否可取消</th>
<th>{{$t('scen.sc_bjts')}}</th> <th>{{$t('scen.sc_bjts')}}</th>
<th>{{$t('scen.sc_dj')}}</th> <th>{{$t('scen.sc_dj')}}</th>
<th>{{$t('scen.sc_gj')}}</th> <th>{{$t('scen.sc_gj')}}</th>
...@@ -285,6 +288,22 @@ ...@@ -285,6 +288,22 @@
<td> <td>
{{item.Name}} {{item.Name}}
</td> </td>
<td>
{{item.ServiceNumber}}
</td>
<td>
{{item.BedTypeStr}} ({{item.BedDesc}})
<br />
{{item.BreakfastTypeStr}}
<br />
{{item.HasWindowStr}}
</td>
<td>
{{item.IsCancelStr}}
<template v-if="item.IsCancel">
<br/> {{item.CancelTime}}
</template>
</td>
<td class="DaysInfo"> <td class="DaysInfo">
<span><i class="iconfont icon-kaoqintongji"></i>{{item.Days}}{{$t('hotel.hotel_day')}}</span> <span><i class="iconfont icon-kaoqintongji"></i>{{item.Days}}{{$t('hotel.hotel_day')}}</span>
</td> </td>
...@@ -430,8 +449,8 @@ ...@@ -430,8 +449,8 @@
delHotelImg(item, index) { delHotelImg(item, index) {
if (item.ID > 0) { if (item.ID > 0) {
let msg = { let msg = {
Id:item.ID, Id: item.ID,
PicId:item.Pic PicId: item.Pic
} }
this.$confirm('是否删除?', '提示', { this.$confirm('是否删除?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
...@@ -444,7 +463,7 @@ ...@@ -444,7 +463,7 @@
}).catch(() => { }).catch(() => {
}); });
}else{ } else {
this.addMsg.RoomImage.splice(index, 1); this.addMsg.RoomImage.splice(index, 1);
} }
}, },
......
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