Commit 8ee69432 authored by 黄奎's avatar 黄奎

新增设置酒店库存页面

parent b3629a2f
<style>
.setHotelStock .setHotelStock {
width: 100%;
height: 150px;
overflow: auto
}
.setHotelStock .comCk_list {
padding: 0 20px;
margin: 0 15px 5px 0;
}
.setHotelStock .cm_Inventory {
margin-left: 20px;
color: red;
display: inline-block;
}
.setHotelStock .cm_hotelTitle {
width: 100%;
text-align: center;
margin-bottom: 20px;
border-bottom: 1px solid #d1d1d1;
padding: 0 20px 10px 20px;
}
.setHotelStock .com_SaveBtn {
margin: 10px 20px 0 45%;
}
.setHotelStock .ckedList {
background-color: #E95252;
color: #fff;
}
.setHotelStock .Ck_hotelInfo {
width: 100%;
height: 40px;
background-color: #F6F8FB;
text-align: center;
line-height: 40px;
margin-bottom: 10px;
}
.setHotelStock .ck_goUrl {
color: blue;
cursor: pointer;
margin-left: 10px;
}
</style>
<template>
<div class="setHotelStock">
<div class="Ck_hotelInfo">
<span style="color:red">{{HotelName}} {{UseDate}}</span> {{$t('objFill.jdkcxx')}}
</div>
<div class="cm_hotelTitle clearfix">
<el-row :gutter="24">
<el-col :span="12">
<el-input v-model="postMsg.Inventory">
<template slot="prepend">{{$t('hotel.hotel_Inventory')}}</template>
</el-input>
</el-col>
<el-col :span="12">
<el-input v-model="postMsg.CostPrice">
<template slot="prepend">{{$t('ground.biaozhunjiancb')}}</template>
</el-input>
</el-col>
</el-row>
</div>
<input type="button" class="normalBtn com_SaveBtn" @click="saveHotelStock()" :value="$t('pub.saveBtn')" />
</div>
</template>
<script>
export default {
props: ["UseDate", "HotelId", "HotelName"],
data() {
return {
postMsg: {
DayType: '4', //添加类型
Hotel: 0,
HotelName: "",
DateList: [], //选择的日期数组
Inventory: '', //库存
CostPrice: '', //成本价格(标准间)
CurrencyId: 3, //币种
}
};
},
methods: {
//保存酒店价格
saveHotelStock() {
this.apipost('dict_post_HotelOffer_SetNewHotelPrice', this.postMsg, res => {
this.saveLoading = false;
if (res.data.resultCode === 1) {
this.Success(this.$t('ground.bianjichenggong'))
this.$emit("success",this.postMsg);
} else {
this.Error(res.data.message)
}
})
},
clearMsg() {
this.postMsg.Hotel = 0;
this.postMsg.HotelName = '';
this.postMsg.DateList = [];
this.postMsg.CostPrice = "";
this.postMsg.Inventory = "";
}
},
created() {
this.clearMsg();
},
mounted() {
this.postMsg.Hotel = this.HotelId;
this.postMsg.HotelName = this.HotelName;
this.postMsg.DateList.push(this.UseDate);
}
};
</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