Commit 21ce9f9b by lichengming

修改了资质管理授权资质管理添加

parent 0562ea6e
......@@ -57,8 +57,8 @@
</Col>
<Col span="24">
<Page
:total="getPage.total"
:page-size="getPage.size"
:total="total"
:page-size="size"
@on-change="_pageChange"
@on-page-size-change="_pageRows"
placement="top"
......@@ -88,6 +88,8 @@ export default {
data() {
return {
loading: true,
total: 0,
size: 0,
pageParams: { rows: 20 },
pageColumns: [
{ title: '检测依据', key: 'code' },
......@@ -118,6 +120,8 @@ export default {
if (result) {
console.log('查询结果')
console.log(result)
this.total = result.total
this.size = result.size
this.getPage = result.records
this.loading = false
console.log(this.getPage)
......
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