|
@@ -39,12 +39,12 @@
|
39
|
39
|
<template slot-scope="scope">{{ scope.row.building + scope.row.unit + scope.row.level + scope.row.roomNo }}</template>
|
40
|
40
|
</el-table-column>
|
41
|
41
|
<!-- <el-table-column prop="createDate" label="创建时间" width="540" align="center" /> -->
|
42
|
|
- <el-table-column label="录入时间" align="center">
|
|
42
|
+ <el-table-column label="创建时间" align="center" width="600">
|
43
|
43
|
<template slot-scope="scope">
|
44
|
44
|
<span>{{ formatDate(scope.row.createDate) }}</span>
|
45
|
45
|
</template>
|
46
|
46
|
</el-table-column>
|
47
|
|
- <el-table-column label="认证状态" width="500" align="center">
|
|
47
|
+ <el-table-column label="认证状态" width="440" align="center">
|
48
|
48
|
<template slot-scope="scope">{{ scope.row.verifyStatus =='1' ? '已认证通过':'已停用' }}</template>
|
49
|
49
|
</el-table-column>
|
50
|
50
|
<!-- <el-table-column label="操作" width="250">
|
|
@@ -131,8 +131,8 @@ export default {
|
131
|
131
|
this.$store.dispatch('UserPassCertification', this.listQuery).then((res) => {
|
132
|
132
|
const resData = res.data
|
133
|
133
|
this.userPassCertification = resData.list
|
134
|
|
- this.listQuery.pageNum = resData.pageNum
|
135
|
|
- this.listQuery.pageSize = resData.pageSize
|
|
134
|
+ this.listQuery.pageNum = 1
|
|
135
|
+ this.listQuery.pageSize = 10
|
136
|
136
|
this.total = resData.total
|
137
|
137
|
this.listLoading = false
|
138
|
138
|
}).catch(() => {
|