Commit 212ee17b authored by youjie's avatar youjie

no message

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