|
@@ -1137,12 +1137,11 @@ export default {
|
|
this.clistLoading = true
|
|
this.clistLoading = true
|
|
getPolicyList({
|
|
getPolicyList({
|
|
pageNum: this.policyList.currentPages,
|
|
pageNum: this.policyList.currentPages,
|
|
- pageSize: this.policyList.pageSizes,
|
|
|
|
|
|
+ pageSize: this.policyList.pageSize,
|
|
policyId: this.id,
|
|
policyId: this.id,
|
|
keyword: this.policyList.keyword
|
|
keyword: this.policyList.keyword
|
|
}).then(res => {
|
|
}).then(res => {
|
|
this.list = res.data.records
|
|
this.list = res.data.records
|
|
- console.log(this.list, '785787')
|
|
|
|
this.cTotal = res.data.total
|
|
this.cTotal = res.data.total
|
|
this.clistLoading = false
|
|
this.clistLoading = false
|
|
})
|
|
})
|
|
@@ -1271,7 +1270,7 @@ export default {
|
|
},
|
|
},
|
|
// 更改每页数量
|
|
// 更改每页数量
|
|
handleSizeChanges4(val) {
|
|
handleSizeChanges4(val) {
|
|
- this.$set(this.policyList, 'pageSizes', val)
|
|
|
|
|
|
+ this.$set(this.policyList, 'pageSize', val)
|
|
this.$set(this.policyList, 'currentPages', 1)
|
|
this.$set(this.policyList, 'currentPages', 1)
|
|
this.getPolicyList()
|
|
this.getPolicyList()
|
|
},
|
|
},
|