Auto-Calculating End Date from Start Date and Period Duration in el-date-picker
updateEndDate(selectedTime) {
if (this.scheduleData.phaseNature === 'point') {
this.scheduleData.finishDate = selectedTime;
} else {
this.computeFinishDate();
}
},
handleDurationBlur(event) {
if (this.scheduleData.phaseNature !== 'point' && this.scheduleData.startDate && event.target.value) {
this.computeFini ...
Posted on Wed, 12 Aug 2026 16:51:53 +0000 by nodster