mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-07 18:00:25 +08:00
feat: 新增cron组件、cron支持6位秒级别
This commit is contained in:
156
mayfly_go_web/src/components/crontab/CrontabHour.vue
Normal file
156
mayfly_go_web/src/components/crontab/CrontabHour.vue
Normal file
@@ -0,0 +1,156 @@
|
||||
<template>
|
||||
<el-form size="small">
|
||||
<el-form-item>
|
||||
<el-radio v-model="radioValue" :label="1"> 小时,允许的通配符[, - * /] </el-radio>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<el-radio v-model="radioValue" :label="2">
|
||||
周期从
|
||||
<el-input-number v-model="cycle01" :min="0" :max="60" /> - <el-input-number v-model="cycle02" :min="0" :max="60" /> 小时
|
||||
</el-radio>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<el-radio v-model="radioValue" :label="3">
|
||||
从
|
||||
<el-input-number v-model="average01" :min="0" :max="60" /> 小时开始,每 <el-input-number v-model="average02" :min="0" :max="60" /> 小时执行一次
|
||||
</el-radio>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<div class="flex-align-center w100">
|
||||
<el-radio v-model="radioValue" :label="4" class="mr5"> 指定 </el-radio>
|
||||
<el-select @click="radioValue = 4" class="w100" clearable v-model="checkboxList" placeholder="可多选" multiple>
|
||||
<el-option v-for="item in 60" :key="item" :value="item - 1">{{ item - 1 }}</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed, toRefs, watch, reactive } from 'vue';
|
||||
import { checkNumber, CrontabValueObj } from './index';
|
||||
|
||||
const cron = defineModel<CrontabValueObj>('cron', { required: true });
|
||||
|
||||
const state = reactive({
|
||||
radioValue: 1,
|
||||
cycle01: 0,
|
||||
cycle02: 1,
|
||||
average01: 0,
|
||||
average02: 1,
|
||||
checkboxList: [] as any,
|
||||
});
|
||||
|
||||
const { radioValue, cycle01, cycle02, average01, average02, checkboxList } = toRefs(state);
|
||||
|
||||
// 单选按钮值变化时
|
||||
function radioChange() {
|
||||
if (state.radioValue === 1) {
|
||||
cron.value.hour = '*';
|
||||
cron.value.day = '*';
|
||||
} else {
|
||||
if (cron.value.min === '*') {
|
||||
cron.value.min = '0';
|
||||
}
|
||||
if (cron.value.second === '*') {
|
||||
cron.value.second = '0';
|
||||
}
|
||||
}
|
||||
switch (state.radioValue) {
|
||||
case 2:
|
||||
cron.value.hour = state.cycle01 + '-' + state.cycle02;
|
||||
break;
|
||||
case 3:
|
||||
cron.value.hour = state.average01 + '/' + state.average02;
|
||||
break;
|
||||
case 4:
|
||||
cron.value.hour = checkboxString.value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// 周期两个值变化时
|
||||
function cycleChange() {
|
||||
state.cycle01 = checkNumber(state.cycle01, 0, 23);
|
||||
state.cycle02 = checkNumber(state.cycle02, 0, 23);
|
||||
if (state.radioValue == 2) {
|
||||
cron.value.hour = cycleTotal.value;
|
||||
}
|
||||
}
|
||||
|
||||
// 平均两个值变化时
|
||||
function averageChange() {
|
||||
state.average01 = checkNumber(state.average01, 0, 23);
|
||||
state.average02 = checkNumber(state.average02, 0, 23);
|
||||
if (state.radioValue == 3) {
|
||||
cron.value.hour = averageTotal.value;
|
||||
}
|
||||
}
|
||||
|
||||
// checkbox值变化时
|
||||
function checkboxChange() {
|
||||
if (state.radioValue == 4) {
|
||||
cron.value.hour = checkboxString.value;
|
||||
}
|
||||
}
|
||||
|
||||
// 计算两个周期值
|
||||
const cycleTotal = computed(() => {
|
||||
return state.cycle01 + '-' + state.cycle02;
|
||||
});
|
||||
|
||||
// 计算平均用到的值
|
||||
const averageTotal = computed(() => {
|
||||
return state.average01 + '/' + state.average02;
|
||||
});
|
||||
|
||||
// 计算勾选的checkbox值合集
|
||||
const checkboxString = computed(() => {
|
||||
let str = state.checkboxList.join();
|
||||
return str == '' ? '*' : str;
|
||||
});
|
||||
|
||||
watch(
|
||||
() => state.radioValue,
|
||||
() => {
|
||||
radioChange();
|
||||
}
|
||||
);
|
||||
|
||||
watch(cycleTotal, () => {
|
||||
cycleChange();
|
||||
});
|
||||
|
||||
watch(averageTotal, () => {
|
||||
averageChange();
|
||||
});
|
||||
|
||||
watch(checkboxString, () => {
|
||||
checkboxChange();
|
||||
});
|
||||
|
||||
const parse = () => {
|
||||
//反解析
|
||||
let ins = cron.value.hour;
|
||||
if (ins === '*') {
|
||||
state.radioValue = 1;
|
||||
} else if (ins.indexOf('-') > -1) {
|
||||
state.radioValue = 2;
|
||||
let indexArr = ins.split('-') as any;
|
||||
isNaN(indexArr[0]) ? (state.cycle01 = 0) : (state.cycle01 = indexArr[0]);
|
||||
state.cycle02 = indexArr[1];
|
||||
} else if (ins.indexOf('/') > -1) {
|
||||
state.radioValue = 3;
|
||||
let indexArr = ins.split('/') as any;
|
||||
isNaN(indexArr[0]) ? (state.average01 = 0) : (state.average01 = indexArr[0]);
|
||||
state.average02 = indexArr[1];
|
||||
} else {
|
||||
state.radioValue = 4;
|
||||
state.checkboxList = ins.split(',');
|
||||
}
|
||||
};
|
||||
|
||||
defineExpose({ parse });
|
||||
</script>
|
||||
Reference in New Issue
Block a user