Commit 1edc1c88 authored by 黄奎's avatar 黄奎

景点操作页面修改

parent a5a16280
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
</ul> </ul>
</div> </div>
<div style="width: 100%; overflow-x: auto;padding-bottom: 10px; " class="ownScrollbarStyle"> <div style="width: 100%; overflow-x: auto;padding-bottom: 10px; " class="ownScrollbarStyle">
<table border="0" cellspacing="1" cellpadding="0" class="bookDinnerStatisticsTalbe"> <table border="0" cellspacing="1" cellpadding="0" class="bookDinnerStatisticsTalbe" v-loading="loading">
<tr> <tr>
<th> <th>
公司团号 公司团号
...@@ -168,6 +168,7 @@ ...@@ -168,6 +168,7 @@
TCNUM: "", TCNUM: "",
flightTotal: 0, flightTotal: 0,
GuestNum: 0, GuestNum: 0,
loading: false,
}; };
}, },
methods: { methods: {
...@@ -212,11 +213,13 @@ ...@@ -212,11 +213,13 @@
return '婴儿' return '婴儿'
}, },
getList() { getList() {
this.loading = true;
this.apipost( this.apipost(
"dmcstatistics_get_GetDinnerStaticsDetail", { "dmcstatistics_get_GetDinnerStaticsDetail", {
TCIDs: this.$route.query.id TCIDs: this.$route.query.id
}, },
res => { res => {
this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.list = res.data.data; this.list = res.data.data;
this.list.forEach(item => { this.list.forEach(item => {
...@@ -354,4 +357,5 @@ ...@@ -354,4 +357,5 @@
.bookDinnerStatisticsTalbe .dinnerTable tr td { .bookDinnerStatisticsTalbe .dinnerTable tr td {
border: none; border: none;
} }
</style> </style>
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