@@ -60,7 +60,7 @@
</div>
<div class="newFlightView-right-bottom">
- <Table :tableTag="table2" ref="table" :fast-filter="fastFilter" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" @tableLoad="tableLoad" />
+ <Table :tableTag="table2" ref="table" :fast-filter="fastFilter" :btnStyle="{top:'-52px'}" :istableCol="true" tableName="航班行李列表" :pageSize="999" @tableLoad="tableLoad" />
@@ -323,10 +323,12 @@ export default {
pageSize
)
if (code == 0) {
- if (returnData.length === 0) {
- this.page--
+ if (returnData.length < pageSize) {
this.noMore = true
- this.loading = false
+ if (returnData.length === 0) {
+ this.page--
+ this.loading = false
+ }
}
if (this.shouldReset) {
this.tableData.push(...returnData)