Merge pull request #607 from RickCole21/master

文档+小bugfix
This commit is contained in:
RickCole 2020-05-21 19:37:06 +08:00 committed by GitHub
commit 3f4ce540d9
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
- `accept` 默认 `text/plain` 默认只支持纯文本,要支持其他类型,请配置此属性为文件后缀`.xxx`
- 例如:`.png`
- 也可以配置多个,用逗号分隔:`.mp3,.mp4`。
- 允许任意类型:`.*`
- 允许任意类型:`*`
- `maxSize` 默认没有限制,当设置后,文件大小大于此值将不允许上传。
- `multiple` 是否多选。
- `maxLength` 默认没有限制,当设置后,一次只允许上传指定数量文件。

View File

@ -171,7 +171,7 @@ export const filters: {
return 0;
}
decimals = parseInt(decimals, 10) || 2;
decimals = parseInt(decimals, 10) ?? 2;
let multiplier = Math.pow(10, decimals);
return (Math.round(input * multiplier) / multiplier).toFixed(decimals);