Commit 1be065c0181ae5414da822e6669b445844c869f3

Authored by fengtao
1 parent b64b293c

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

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