领用核算:去分页

This commit is contained in:
chenjianan
2018-11-28 10:57:02 +08:00
parent 739fdd22da
commit 52741c03d7
2 changed files with 7 additions and 26 deletions

View File

@@ -19,8 +19,10 @@
height="440"
size="mini"
show-summary
highlight-current-row
stripe
border>
<el-table-column align="center" label="序号" type="index">
</el-table-column>
<el-table-column align="center" label="项目名称">
<template slot-scope="scope">
{{ scope.row.项目名称 }}
@@ -62,16 +64,6 @@
</template>
</el-table-column>
</el-table>
<div class="block" style="margin-top: 10px;">
<el-pagination
:current-page="pageCurrent"
:page-sizes="[10, 20, 30, 40, 50]"
:page-size="pageSize"
:total="total"
layout="total, sizes, prev, pager, next, jumper"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"/>
</div>
</el-card>
</div>
</template>
@@ -111,20 +103,10 @@ export default {
if (!this.projectValue) {
this.$message.error('请选择项目')
} else {
searchReceiveCheck(this.pageCurrent, this.pageSize, 1, this.projectValue).then(response => {
this.tableData1 = response.data.rows
this.total = response.data.total
searchReceiveCheck(1, this.projectValue).then(response => {
this.tableData1 = response.data
})
}
},
handleSizeChange(val) {
this.pageSize = val
this.pageCurrent = 1
this.searchProject()
},
handleCurrentChange(val) {
this.pageCurrent = val
this.searchProject()
}
}
}