|
|
@@ -436,7 +436,7 @@ export default {
|
|
|
changePageCoreRecordData() {
|
|
|
// 如果总记忆中还没有选择的数据,那么就直接取当前页选中的数据,不需要后面一系列计算
|
|
|
if (this.$utils.isEmpty(this.selectionAll)) {
|
|
|
- this.selectionAll = JSON.parse(JSON.stringify(this.selection))
|
|
|
+ this.selectionAll = this.selection ? JSON.parse(JSON.stringify(this.selection)) : []
|
|
|
return
|
|
|
}
|
|
|
|