1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<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="average02" :min="0" :max="60" />
                小时执行一次
            </el-radio>
        </el-form-item>
 
        <el-form-item>
            <el-radio v-model="radioValue" :label="4">
                指定
                <el-select
                    clearable
                    v-model="checkboxList"
                    placeholder="可多选"
                    multiple
                    style="width: 100%"
                >
                    <el-option
                        v-for="item in 24"
                        :key="item"
                        :value="item - 1"
                        >{{ item - 1 }}</el-option
                    >
                </el-select>
            </el-radio>
        </el-form-item>
    </el-form>
</template>
 
<script>
export default {
    data() {
        return {
            radioValue: 1,
            cycle01: 0,
            cycle02: 1,
            average02: 1,
            checkboxList: [],
            checkNum: this.$options.propsData.check
        };
    },
    name: "CrontabHour",
    props: ["check", "cron"],
    methods: {
        // 单选按钮值变化时
        radioChange() {
            if (this.radioValue === 1) {
                this.$emit("update", "hour", "*", "hour");
                this.$emit("update", "day", "*", "hour");
            } else {
                if (this.cron.min === "*") {
                    this.$emit("update", "min", "0", "hour");
                }
                if (this.cron.second === "*") {
                    this.$emit("update", "second", "0", "hour");
                }
            }
            switch (this.radioValue) {
                case 2:
                    this.$emit(
                        "update",
                        "hour",
                        this.cycle01 + "-" + this.cycle02
                    );
                    break;
                case 3:
                    this.$emit("update", "hour", "*" + "/" + this.average02);
                    break;
                case 4:
                    this.$emit("update", "hour", this.checkboxString);
                    break;
            }
        },
        // 周期两个值变化时
        cycleChange() {
            if (this.radioValue == "2") {
                this.$emit("update", "hour", this.cycleTotal);
            }
        },
        // 平均两个值变化时
        averageChange() {
            if (this.radioValue == "3") {
                this.$emit("update", "hour", this.averageTotal);
            }
        },
        // checkbox值变化时
        checkboxChange() {
            if (this.radioValue == "4") {
                this.$emit("update", "hour", this.checkboxString);
            }
        }
    },
    watch: {
        radioValue: "radioChange",
        cycleTotal: "cycleChange",
        averageTotal: "averageChange",
        checkboxString: "checkboxChange"
    },
    computed: {
        // 计算两个周期值
        cycleTotal: function() {
            this.cycle01 = this.checkNum(this.cycle01, 0, 23);
            this.cycle02 = this.checkNum(this.cycle02, 0, 23);
            return this.cycle01 + "-" + this.cycle02;
        },
        // 计算平均用到的值
        averageTotal: function() {
            this.average02 = this.checkNum(this.average02, 1, 23);
            return "*" + "/" + this.average02;
        },
        // 计算勾选的checkbox值合集
        checkboxString: function() {
            let str = this.checkboxList.join();
            return str == "" ? "*" : str;
        }
    }
};
</script>