From cd4119b26a65b1cf07face7ebd640e5292deaf5f Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Wed, 08 Sep 2021 09:31:37 +0800
Subject: [PATCH] 修正单词拼写错误

---
 ruoyi-ui/src/components/Crontab/year.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ruoyi-ui/src/components/Crontab/year.vue b/ruoyi-ui/src/components/Crontab/year.vue
index 8cb886f..800dfa5 100644
--- a/ruoyi-ui/src/components/Crontab/year.vue
+++ b/ruoyi-ui/src/components/Crontab/year.vue
@@ -55,12 +55,12 @@
 		}
 	},
 	name: 'crontab-year',
-	props: ['check', 'mouth', 'cron'],
+	props: ['check', 'month', 'cron'],
 	methods: {
 		// 单选按钮值变化时
 		radioChange() {
-			if (this.cron.mouth === '*') {
-				this.$emit('update', 'mouth', '0', 'year');
+			if (this.cron.month === '*') {
+				this.$emit('update', 'month', '0', 'year');
 			}
 			if (this.cron.day === '*') {
 				this.$emit('update', 'day', '0', 'year');
@@ -141,4 +141,4 @@
 		this.fullYear = Number(new Date().getFullYear());
 	}
 }
-</script>
\ No newline at end of file
+</script>

--
Gitblit v1.9.3