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

页面修改

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