Showing
2 changed files
with
4 additions
and
4 deletions
... | ... | @@ -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 | }, | ... | ... |