Merge pull request #3096 from SergioCrisostomo/use-last-picked-date-in-multiple-mode-for-panel-date

Use last picked date in multiple mode for panel date
This commit is contained in:
Aresn 2018-03-05 16:04:12 +08:00 committed by GitHub
commit c365be4633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -92,7 +92,11 @@
mixins: [ Mixin, Locale, DateMixin ],
components: { Icon, DateTable, YearTable, MonthTable, TimePicker, Confirm, datePanelLabel },
props: {
// in the mixin
// more props in the mixin
multiple: {
type: Boolean,
default: false
}
},
data () {
const {selectionMode, value} = this;
@ -141,7 +145,7 @@
watch: {
value (newVal) {
this.dates = newVal;
this.panelDate = this.startDate || this.dates[0] || new Date();
this.panelDate = this.startDate || (this.multiple ? this.dates[this.dates.length - 1] : this.dates[0]) || new Date();
},
currentView (currentView) {
this.$emit('on-selection-mode-change', currentView);

View file

@ -47,6 +47,7 @@
:split-panels="splitPanels"
:show-week-numbers="showWeekNumbers"
:picker-type="type"
:multiple="multiple"
:time-picker-options="timePickerOptions"
@ -198,6 +199,7 @@
publicStringValue(){
const {formatDate, publicVModelValue, type} = this;
if (type.match(/^time/)) return publicVModelValue;
if (this.multiple) return formatDate(publicVModelValue);
return Array.isArray(publicVModelValue) ? publicVModelValue.map(formatDate) : formatDate(publicVModelValue);
},
opened () {