|
@@ -45,9 +45,6 @@ export default {
|
45
|
45
|
} ,{
|
46
|
46
|
label: '催缴总次数',
|
47
|
47
|
key: 'totalReminders'
|
48
|
|
- },{
|
49
|
|
- label: '信用分',
|
50
|
|
- key: 'credit_point'
|
51
|
48
|
}
|
52
|
49
|
],
|
53
|
50
|
tableData: [],
|
|
@@ -58,19 +55,18 @@ export default {
|
58
|
55
|
},
|
59
|
56
|
mounted() {
|
60
|
57
|
this.getTableData()
|
61
|
|
- this.dashCarOwnerCreditPage()
|
62
|
58
|
},
|
63
|
59
|
methods: {
|
64
|
60
|
handlePageChange() {
|
65
|
61
|
this.getTableData()
|
66
|
62
|
},
|
67
|
|
- dashCarOwnerCreditPage(){
|
|
63
|
+ getTableData() {
|
68
|
64
|
const {pageNum, pageSize} = this
|
69
|
|
- api.dashCarOwnerCreditPage({current: pageNum, size: pageSize}).then(res => {
|
|
65
|
+ api.czxyjgListByPage({current: pageNum, size: pageSize}).then(res => {
|
70
|
66
|
this.tableData = res.data.records || []
|
71
|
67
|
this.total = res.data.total
|
72
|
68
|
})
|
73
|
|
- },
|
|
69
|
+ }
|
74
|
70
|
}
|
75
|
71
|
}
|
76
|
72
|
</script>
|