Skip to content

Commit

Permalink
Merge pull request #252 from zqd123/master
Browse files Browse the repository at this point in the history
fix: yudao-ui-admin前端-Cron表达式-周选择第4项,#号两边的值颠倒了
  • Loading branch information
YunaiV authored Jul 26, 2023
2 parents 8d58b1e + 70de47c commit c42ff64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yudao-ui-admin/src/components/Crontab/week.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default {
averageTotal: function () {
this.average01 = this.checkNum(this.average01, 1, 4)
this.average02 = this.checkNum(this.average02, 1, 7)
return this.average02 + '#' + this.average01;
return this.average01 + '#' + this.average02;
},
// 最近的工作日(格式)
weekdayCheck: function () {
Expand Down

0 comments on commit c42ff64

Please sign in to comment.