From c068f8ce8e797ec4ef08946dae32918c8addc456 Mon Sep 17 00:00:00 2001 From: zch Date: Thu, 27 Mar 2025 19:08:25 +0800 Subject: [PATCH] =?UTF-8?q?refactor(Crontab):=20=E9=87=8D=E6=9E=84vue3?= =?UTF-8?q?=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 优化了 radioValue 的赋值方式,使用 :value 替代 label - 调整了 input-number 和 select 组件的样式,增加空格和对齐 - 重构了计算逻辑,简化了 cycleTotal、averageTotal 等计算属性 - 优化了 watch 监听和 radio 变化处理逻辑 - 新增 changeRadioValue 函数处理 radio 值的变化 - 统一了 emit 方法的调用方式 --- src/components/Crontab/day.vue | 329 ++++----- src/components/Crontab/hour.vue | 234 ++++--- src/components/Crontab/index.vue | 719 +++++++------------ src/components/Crontab/min.vue | 238 +++---- src/components/Crontab/month.vue | 242 ++++--- src/components/Crontab/result.vue | 1091 ++++++++++++++--------------- src/components/Crontab/second.vue | 236 +++---- src/components/Crontab/week.vue | 391 +++++------ src/components/Crontab/year.vue | 276 ++++---- 9 files changed, 1772 insertions(+), 1984 deletions(-) diff --git a/src/components/Crontab/day.vue b/src/components/Crontab/day.vue index 691d31b..39263f5 100644 --- a/src/components/Crontab/day.vue +++ b/src/components/Crontab/day.vue @@ -1,171 +1,174 @@ - - + + \ No newline at end of file diff --git a/src/components/Crontab/hour.vue b/src/components/Crontab/hour.vue index 7ec40ce..8e7c21c 100644 --- a/src/components/Crontab/hour.vue +++ b/src/components/Crontab/hour.vue @@ -1,123 +1,133 @@ - + + \ No newline at end of file diff --git a/src/components/Crontab/index.vue b/src/components/Crontab/index.vue index 604cf16..103cf4c 100644 --- a/src/components/Crontab/index.vue +++ b/src/components/Crontab/index.vue @@ -1,389 +1,151 @@ - - + \ No newline at end of file diff --git a/src/components/Crontab/min.vue b/src/components/Crontab/min.vue index 0566ea1..65f0946 100644 --- a/src/components/Crontab/min.vue +++ b/src/components/Crontab/min.vue @@ -1,124 +1,126 @@ - - \ No newline at end of file + return checkboxList.value.join(',') +}) +watch(() => props.cron.min, value => changeRadioValue(value)) +watch([radioValue, cycleTotal, averageTotal, checkboxString], () => onRadioChange()) +function changeRadioValue(value) { + if (value === '*') { + radioValue.value = 1 + } else if (value.indexOf('-') > -1) { + const indexArr = value.split('-') + cycle01.value = Number(indexArr[0]) + cycle02.value = Number(indexArr[1]) + radioValue.value = 2 + } else if (value.indexOf('/') > -1) { + const indexArr = value.split('/') + average01.value = Number(indexArr[0]) + average02.value = Number(indexArr[1]) + radioValue.value = 3 + } else { + checkboxList.value = [...new Set(value.split(',').map(item => Number(item)))] + radioValue.value = 4 + } +} +function onRadioChange() { + switch (radioValue.value) { + case 1: + emit('update', 'min', '*', 'min') + break + case 2: + emit('update', 'min', cycleTotal.value, 'min') + break + case 3: + emit('update', 'min', averageTotal.value, 'min') + break + case 4: + if (checkboxList.value.length === 0) { + checkboxList.value.push(checkCopy.value[0]) + } else { + checkCopy.value = checkboxList.value + } + emit('update', 'min', checkboxString.value, 'min') + break + } +} + + + \ No newline at end of file diff --git a/src/components/Crontab/month.vue b/src/components/Crontab/month.vue index 55ba305..e561ba4 100644 --- a/src/components/Crontab/month.vue +++ b/src/components/Crontab/month.vue @@ -1,123 +1,141 @@ - + + \ No newline at end of file diff --git a/src/components/Crontab/result.vue b/src/components/Crontab/result.vue index 7837cb8..5a812ee 100644 --- a/src/components/Crontab/result.vue +++ b/src/components/Crontab/result.vue @@ -10,580 +10,531 @@ - +function checkDate(value) { + let time = new Date(value); + let format = formatDate(time) + return value === format; +} +onMounted(() => { + expressionChange() +}) + \ No newline at end of file diff --git a/src/components/Crontab/second.vue b/src/components/Crontab/second.vue index e7cc65f..15e47a0 100644 --- a/src/components/Crontab/second.vue +++ b/src/components/Crontab/second.vue @@ -1,132 +1,128 @@ - + + \ No newline at end of file diff --git a/src/components/Crontab/week.vue b/src/components/Crontab/week.vue index 471858e..e59da22 100644 --- a/src/components/Crontab/week.vue +++ b/src/components/Crontab/week.vue @@ -1,212 +1,197 @@ - + + \ No newline at end of file diff --git a/src/components/Crontab/year.vue b/src/components/Crontab/year.vue index 52481f5..fa921ae 100644 --- a/src/components/Crontab/year.vue +++ b/src/components/Crontab/year.vue @@ -1,145 +1,149 @@ - + + \ No newline at end of file