We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb5d01 commit e3f2443Copy full SHA for e3f2443
1 file changed
src/frontend/src/views/cron-job/list/components/operation/index.vue
@@ -469,7 +469,6 @@
469
cronJobCustomNotifyVO,
470
471
} = cronJob;
472
- console.log('cronJob = ', cronJob);
473
474
if (executeTime) {
475
this.strategy = 'once';
@@ -621,12 +620,10 @@
621
620
* @param {Object} payload 字段名和值
622
*/
623
handleFormItemChange(payload) {
624
- // this.formData = {
625
- // ...this.formData,
626
- // ...payload,
627
- // };
628
- Object.assign(this.formData, payload);
629
- console.log('this.formData = ', this.formData);
+ this.formData = {
+ ...this.formData,
+ ...payload,
+ };
630
},
631
/**
632
* @desc 作业模板更新
0 commit comments