Crontab组件radio的label类型不一致

This commit is contained in:
gaoxiaoniu
2023-09-01 08:48:07 +08:00
parent 891ed3d055
commit 1ca5dd7e93
7 changed files with 23 additions and 23 deletions

View File

@@ -144,25 +144,25 @@ export default {
// 周期两个值变化时
cycleChange() {
if (this.radioValue === '3') {
if (this.radioValue === 3) {
this.$emit('update', 'week', this.cycleTotal);
}
},
// 平均两个值变化时
averageChange() {
if (this.radioValue === '4') {
if (this.radioValue === 4) {
this.$emit('update', 'week', this.averageTotal);
}
},
// 最近工作日值变化时
weekdayChange() {
if (this.radioValue === '5') {
if (this.radioValue === 5) {
this.$emit('update', 'week', this.weekday + 'L');
}
},
// checkbox值变化时
checkboxChange() {
if (this.radioValue === '6') {
if (this.radioValue === 6) {
this.$emit('update', 'week', this.checkboxString);
}
},