Browse Source

Merge pull request #4213 from lgcareer/1.3.4-prepare-feature-3878

[Fix-4054][UI]Repair the last Sunday of each month
xingchun-chen 4 years ago committed by GitHub
parent
commit
e0963a776f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/js/module/components/crontab/source/_times/day.vue
  2. 2
      dolphinscheduler-ui/src/js/module/components/crontab/source/util/index.js

4
dolphinscheduler-ui/src/js/module/components/crontab/source/_times/day.vue

@ -161,7 +161,7 @@
selectSpecificDayList: selectList['day'],
monthLastDaysVal: 'L',
monthLastWorkingDays: 'LW',
monthLastWeeksVal: '1L',
monthLastWeeksVal: '?',
monthLastWeeksList: _.map(_.cloneDeep(selectList['lastWeeks']), v => {
return {
value: v.value,
@ -313,7 +313,7 @@
this.monthLastWorkingDaysReset()
break
case 'monthLastWeeks':
this.weekValue = '?'
this.weekValue = '1L'
this.monthLastWeeksReset()
break
case 'monthTailBefore':

2
dolphinscheduler-ui/src/js/module/components/crontab/source/util/index.js

@ -121,7 +121,7 @@ const selectList = {
}),
lastWeeks: [
{
value: '1L',
value: '?',
label: '星期天'
},
{

Loading…
Cancel
Save