6f7236d3 by zhen

feat:限制文件大小为200M

1 parent 161ec22d
......@@ -256,6 +256,11 @@ export default {
this.$message.error('支持文件为pdf格式')
return
}
// 大小限制为200M
if (file.size > 200 * 1024 * 1024) {
this.$message.error('文件大小限制为200M')
return
}
if (this.fileList[this.currentFileIndex].name) {
await this.uploadConfirm()
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!