diff --git a/components/date-picker/index.vue b/components/date-picker/index.vue index 175eb033d..6dc4545f6 100644 --- a/components/date-picker/index.vue +++ b/components/date-picker/index.vue @@ -525,7 +525,9 @@ export default { }, $_onPickerCancel () { this.$emit('cancel') - this.columnData = [...this.oldColumnData] + if (this.oldColumnData) { + this.columnData = [...this.oldColumnData] + } }, getFormatDate (format = 'yyyy-MM-dd hh:mm') {