Skip to content

Commit 3bfa518

Browse files
zhangqdzhangqd
authored andcommitted
fix: yudao-ui-admin前端-Cron表达式-周选择第4项,#号两边的值颠倒了
1 parent 723302f commit 3bfa518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Crontab/week.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export default {
185185
averageTotal: function () {
186186
this.average01 = this.checkNum(this.average01, 1, 4)
187187
this.average02 = this.checkNum(this.average02, 1, 7)
188-
return this.average02 + '#' + this.average01;
188+
return this.average01 + '#' + this.average02;
189189
},
190190
// 最近的工作日(格式)
191191
weekdayCheck: function () {

0 commit comments

Comments
 (0)