From 92db61641952df6ca6a286ba2d488661f3ba7cf3 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Mon, 17 Jun 2019 13:18:51 +0800 Subject: [PATCH] updated crontab --- frontend/src/views/schedule/ScheduleList.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/views/schedule/ScheduleList.vue b/frontend/src/views/schedule/ScheduleList.vue index 19b300a3..870a70b0 100644 --- a/frontend/src/views/schedule/ScheduleList.vue +++ b/frontend/src/views/schedule/ScheduleList.vue @@ -219,6 +219,8 @@ export default { onCrontabFill (value) { value = value.replace(/[?]/g, '*') this.$set(this.scheduleForm, 'cron', value) + + this.$st.sendEv('定时任务', '提交生成Cron', 'cron', this.scheduleForm.cron) }, onShowCronDialog () { this.showCron = true @@ -229,6 +231,8 @@ export default { // this.expression = this.scheduleForm.cron.replace(/[?]/g, '*') this.expression = this.scheduleForm.cron } + + this.$st.sendEv('定时任务', '点击生成Cron', 'cron', this.scheduleForm.cron) } }, created () {