Skip to content

Commit e3f2443

Browse files
committed
feat:定时任务-支持任务级别的通知方式设置 #3557
1 parent ccb5d01 commit e3f2443

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

  • src/frontend/src/views/cron-job/list/components/operation

src/frontend/src/views/cron-job/list/components/operation/index.vue

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,6 @@
469469
cronJobCustomNotifyVO,
470470
471471
} = cronJob;
472-
console.log('cronJob = ', cronJob);
473472
474473
if (executeTime) {
475474
this.strategy = 'once';
@@ -621,12 +620,10 @@
621620
* @param {Object} payload 字段名和值
622621
*/
623622
handleFormItemChange(payload) {
624-
// this.formData = {
625-
// ...this.formData,
626-
// ...payload,
627-
// };
628-
Object.assign(this.formData, payload);
629-
console.log('this.formData = ', this.formData);
623+
this.formData = {
624+
...this.formData,
625+
...payload,
626+
};
630627
},
631628
/**
632629
* @desc 作业模板更新

0 commit comments

Comments
 (0)