添加文件大小限制
This commit is contained in:
parent
8371a7188f
commit
6e19aa583d
@ -1,3 +1,4 @@
|
||||
|
||||
/**
|
||||
* 图片转Base64
|
||||
*/
|
||||
@ -79,10 +80,21 @@ export function provenimg(file: any): boolean | void{
|
||||
* @param name 图片名字
|
||||
*/
|
||||
|
||||
export function provenvideo(file: any): boolean{
|
||||
export function provenvideo(file: any, isvideo?: boolean): boolean{
|
||||
const type = ['flv', 'mp4', 'wmv', 'mov', 'avi'];
|
||||
const ntypearr = file.name.split('.');
|
||||
const ntype = ntypearr[ntypearr.length - 1];
|
||||
if(isvideo){
|
||||
const size = 500 * 1024 * 1024;
|
||||
if(file.size > size){
|
||||
return false;
|
||||
}
|
||||
}else{
|
||||
const size = 100 * 1024 * 1024;
|
||||
if(file.size > size){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
for(const i in type){
|
||||
if(type[i] == ntype){
|
||||
return true;
|
||||
|
@ -330,7 +330,7 @@ export default defineComponent({
|
||||
}
|
||||
}
|
||||
function video(file: any){
|
||||
return provenvideo(file)
|
||||
return provenvideo(file, true)
|
||||
}
|
||||
function imgs(file: any){
|
||||
return provenimg(file)
|
||||
|
Loading…
Reference in New Issue
Block a user