|
@@ -70,7 +70,7 @@
|
70
|
70
|
<el-table-column prop="ownerName" label="业主姓名" align="center"/>
|
71
|
71
|
<el-table-column prop="ownerTel" label="手机号码" align="center" />
|
72
|
72
|
<el-table-column prop="pairStatus" label="关联业主状态" align="center" >
|
73
|
|
- <template slot-scope="scope">{{ scope.row.pairStatus === '1' ? '已关联':'未关联' }}</template>
|
|
73
|
+ <template slot-scope="scope">{{ scope.row.verifyStatus === '1' ? '已关联':'未关联' }}</template>
|
74
|
74
|
</el-table-column>
|
75
|
75
|
<el-table-column prop="createDate" label="创建时间" align="center" >
|
76
|
76
|
<template slot-scope="scope">{{ formatDate(scope.row.createDate) }}</template>
|
|
@@ -78,9 +78,9 @@
|
78
|
78
|
</el-table>
|
79
|
79
|
<div class="block">
|
80
|
80
|
<el-pagination
|
81
|
|
- :current-page="listQuery.pageNum"
|
|
81
|
+ :current-page.sync="listQuery.pageNum"
|
82
|
82
|
:page-sizes="[10, 20, 50, 100]"
|
83
|
|
- :page-size="listQuery.pageSize"
|
|
83
|
+ :page-size.sync="listQuery.pageSize"
|
84
|
84
|
:total="total"
|
85
|
85
|
layout="total, sizes, prev, pager, next, jumper"
|
86
|
86
|
@size-change="handleSizeChange"
|
|
@@ -133,6 +133,7 @@ export default {
|
133
|
133
|
|
134
|
134
|
const query = this.$route.params.listQuery
|
135
|
135
|
if (query !== undefined) {
|
|
136
|
+ console.log('参数:', query)
|
136
|
137
|
this.listQuery = query
|
137
|
138
|
}
|
138
|
139
|
|