From 25ecf902652b1d01ffdc16bd78e520b52eb6642a Mon Sep 17 00:00:00 2001 From: zch Date: Thu, 27 Mar 2025 17:05:50 +0800 Subject: [PATCH] =?UTF-8?q?change(Crontab):=20=E8=BF=98=E5=8E=9F=E5=8E=9F?= =?UTF-8?q?=E7=89=88=EF=BC=8C=E4=B8=8D=E4=BD=9C=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了对 this.$options.propsData.check 的冗余判断 - 直接使用 this.$options.propsData.check 初始化 checkNum - 删除了 created 钩子中对 check 函数的冗余赋值 - 简化了 cycleTotal 和 averageTotal 计算属性中的条件判断 --- src/components/Crontab/second.vue | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/components/Crontab/second.vue b/src/components/Crontab/second.vue index 9bf9746..e7b7761 100644 --- a/src/components/Crontab/second.vue +++ b/src/components/Crontab/second.vue @@ -43,7 +43,7 @@ export default { average01: 0, average02: 1, checkboxList: [], - checkNum: this.$options && this.$options.propsData && this.$options.propsData.check ? this.$options.propsData.check : (val) => val + checkNum: this.$options.propsData.check } }, name: 'crontab-second', @@ -97,14 +97,14 @@ export default { computed: { // 计算两个周期值 cycleTotal: function () { - const cycle01 = typeof this.checkNum === 'function' ? this.checkNum(this.cycle01, 0, 58) : this.cycle01 - const cycle02 = typeof this.checkNum === 'function' ? this.checkNum(this.cycle02, cycle01 ? cycle01 + 1 : 1, 59) : this.cycle02 + const cycle01 = this.checkNum(this.cycle01, 0, 58) + const cycle02 = this.checkNum(this.cycle02, cycle01 ? cycle01 + 1 : 1, 59) return cycle01 + '-' + cycle02; }, // 计算平均用到的值 averageTotal: function () { - const average01 = typeof this.checkNum === 'function' ? this.checkNum(this.average01, 0, 58) : this.average01 - const average02 = typeof this.checkNum === 'function' ? this.checkNum(this.average02, 1, 59 - average01 || 0) : this.average02 + const average01 = this.checkNum(this.average01, 0, 58) + const average02 = this.checkNum(this.average02, 1, 59 - average01 || 0) return average01 + '/' + average02; }, // 计算勾选的checkbox值合集 @@ -112,12 +112,6 @@ export default { let str = this.checkboxList.join(); return str == '' ? '*' : str; } - }, - created() { - // 如果props传入了check函数,就使用props的check函数 - if (typeof this.check === 'function') { - this.checkNum = this.check; - } } }