Commit 1c59b45941f9c774df066e318f28aec47028703d

Authored by fengwotao
1 parent 6fdcb5ca

fix: DEFECT-1622 改为统一的间隔时间

@@ -465,14 +465,14 @@ export const formSchema: BFormSchema[] = [ @@ -465,14 +465,14 @@ export const formSchema: BFormSchema[] = [
465 }, 465 },
466 { 466 {
467 field: 'dateGroupGap', 467 field: 'dateGroupGap',
468 - label: '分组间隔', 468 + label: '间隔时间',
469 component: 'Select', 469 component: 'Select',
470 colProps: { span: 24 }, 470 colProps: { span: 24 },
471 dynamicRules: ({ model }) => { 471 dynamicRules: ({ model }) => {
472 return [ 472 return [
473 { 473 {
474 required: model[SchemaFiled.AGG] !== AggregateDataEnum.NONE, 474 required: model[SchemaFiled.AGG] !== AggregateDataEnum.NONE,
475 - message: '分组间隔为必填项', 475 + message: '间隔时间为必填项',
476 type: 'number', 476 type: 'number',
477 }, 477 },
478 ]; 478 ];