Commit 212ee17b authored by youjie's avatar youjie

no message

parent 7192a954
......@@ -101,7 +101,7 @@
</ul>
</div>
<template>
<OrderList :OrderList="OrderList" v-loading="loading"> </OrderList>
<OrderList :OrderList="OrderList" v-loading="loading" @success="GetList"> </OrderList>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage" layout="total,prev, pager, next, jumper" :page-size=msg.pageSize :total=total>
</el-pagination>
......@@ -125,7 +125,7 @@
tableHeight: 0,
msg:{
pageIndex: 1,
pageSize: 10,
pageSize: 5,
HotelId: 0,
RoomType: 0,
StartTime: '',//new Date().Format("yyyy-MM-dd")
......
......@@ -927,12 +927,26 @@
},
getList() {
this.loading = true;
this.apipost('dmcstatistics_get_GetHotelStaticsDetail_V2', {
TCIDs: this.$route.query.id,
NewCombinationNum: this.$route.query.NewCombinationNum,
IsCombine: this.IsCombine,
NewTCIDs: this.NewTCIDs
}, res => {
let msg = {
TCIDs: '',
NewCombinationNum: '',
IsCombine: '',
NewTCIDs: ''
}
if(this.$route.query.OrderType){
msg = {
TCIDs: this.$route.query.id,
OrderType: this.$route.query.OrderType
}
}else{
msg = {
TCIDs: this.$route.query.id,
NewCombinationNum: this.$route.query.NewCombinationNum,
IsCombine: this.IsCombine,
NewTCIDs: this.NewTCIDs
}
}
this.apipost('dmcstatistics_get_GetHotelStaticsDetail_V2', msg, res => {
if (res.data.resultCode == 1) {
this.IsOperation = res.data.data.IsOperation;
if (this.IsEditHotel == 0) {
......
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