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