Commit 1be065c0181ae5414da822e6669b445844c869f3

Authored by fengtao
1 parent b64b293c

fix:修改报表配置最大值为100和名称为最大条数

@@ -98,7 +98,7 @@ @@ -98,7 +98,7 @@
98 () => dataTypeStr.value, 98 () => dataTypeStr.value,
99 (newValue) => { 99 (newValue) => {
100 if (newValue == 0) { 100 if (newValue == 0) {
101 - setFieldsValue({ limit: 200 }); 101 + setFieldsValue({ limit: 100 });
102 } else { 102 } else {
103 } 103 }
104 } 104 }
@@ -385,15 +385,15 @@ export const formSchema: QFormSchema[] = [ @@ -385,15 +385,15 @@ export const formSchema: QFormSchema[] = [
385 { 385 {
386 field: 'limit', 386 field: 'limit',
387 required: true, 387 required: true,
388 - label: '最大', 388 + label: '最大条数',
389 component: 'InputNumber', 389 component: 'InputNumber',
390 - defaultValue: 200, 390 + defaultValue: 100,
391 ifShow({ values }) { 391 ifShow({ values }) {
392 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE; 392 return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
393 }, 393 },
394 colProps: { span: 12 }, 394 colProps: { span: 12 },
395 componentProps: { 395 componentProps: {
396 - placeholder: '请输入最大', 396 + placeholder: '请输入最大条数',
397 min: 7, 397 min: 7,
398 max: 50000, 398 max: 50000,
399 }, 399 },