修正分页赋值错误

Former-commit-id: e70b7b21f2e4e4969dd190d9cd496b5749ebc2f7
Former-commit-id: 5685e514b339ae3a5a7e0d1babdc3c8dd2727944
Former-commit-id: 29e2b0f89ab642d71c01f2734b7c14d5cac01a87
Former-commit-id: 41a7d06cc1f1fcee64b6eff9941d37319e18d2b8 [formerly f17514aab0d45ec6fa634b8ccb654920e8a62237]
Former-commit-id: 0ffd53fc169454877201211994b0706d1d07567c
Former-commit-id: 9d50021d522353ede5b36de8d65f076a78e27aee
Former-commit-id: f50bec36a741a4f65783b96e394bd8c216a8e9e0
Former-commit-id: e9365e718ea819f2e3fcfa788b15f4269ef686c4
Former-commit-id: fa2e09478ef27984c206c3fd7a852708c0a32dc9
This commit is contained in:
FairyEver
2019-10-28 10:09:46 +08:00
parent de788994d5
commit e1569fd666

View File

@@ -43,7 +43,11 @@ export default {
title: '分页变化',
message: `当前第${val.current}页 共${val.total}条 每页${val.size}`
})
this.page = val
this.page = {
pageCurrent: val.current,
pageSize: val.size,
pageTotal: val.total
}
// nextTick 只是为了优化示例中 notify 的显示
this.$nextTick(() => {
this.$refs.header.handleFormSubmit()