(props)
| 109 | * @author: 白雾茫茫丶 |
| 110 | */ |
| 111 | export const ProFormSort: FC<ProFormDigitProps> = (props) => { |
| 112 | const { formatMessage } = useIntl(); |
| 113 | return ( |
| 114 | ( |
| 115 | <ProFormDigit |
| 116 | label={formatMessage({ id: INTERNATION.SORT })} |
| 117 | name="sort" |
| 118 | colProps={{ span: 24 }} |
| 119 | min={1} |
| 120 | max={99} |
| 121 | initialValue={1} |
| 122 | tooltip={formatMessage({ id: INTERNATION.SORT_TIP })} |
| 123 | fieldProps={{ precision: 0 }} |
| 124 | {...props} |
| 125 | /> |
| 126 | ) |
| 127 | ) |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * @description: 描述 |
nothing calls this directly
no outgoing calls
no test coverage detected