bug修改

This commit is contained in:
lSun 2025-06-24 17:46:26 +08:00
parent 247b1894d2
commit cdcb472717
2 changed files with 12 additions and 6 deletions

View File

@ -1390,8 +1390,10 @@ function uploadFileContract(number){
multiple: true, //是否允许多文件上传默认未false
dataType: "json",
// data: {"pickId": id},
exts: 'jpg|png|jpeg|txt|pdf|xlsx|xls|docx|doc|ppt|pptx|PDF',
//acceptMime: 'image/jpg,image/png,image/jpeg,file/pdf,file/xlsx',
// exts: 'jpg|png|jpeg|txt|pdf|xlsx|xls|docx|doc|ppt|pptx|PDF',
// //acceptMime: 'image/jpg,image/png,image/jpeg,file/pdf,file/xlsx',
exts: 'jpg|png|jpeg|pdf|PDF',
acceptMime: 'image/jpg,image/png,image/jpeg,application/pdf',
auto: false, //是否自动上传 默认为true
number: number, //最大上传数量
size: 1024*30, //最大文件大小单位k
@ -1573,14 +1575,14 @@ function getTypeImgConsPerson(str){
function choseType(str) {
if (str.indexOf("jpg") > 0) {
return true;
} else if (str.indexOf("JPG") > 0) {
return true;
} else if (str.indexOf("png") > 0) {
return true;
} else if (str.indexOf("jpeg") > 0) {
return true;
} else if (str.indexOf("gif") > 0) {
return true;
}else if (str.indexOf("pdf") > 0) {
return true;
}else {
return false;
}

View File

@ -1357,8 +1357,10 @@ function uploadFileContract(number) {
multiple: true, //是否允许多文件上传默认未false
dataType: "json",
// data: {"pickId": id},
exts: "jpg|png|jpeg|txt|pdf|xlsx|xls|docx|doc|ppt|pptx|PDF",
// exts: "jpg|png|jpeg|txt|pdf|xlsx|xls|docx|doc|ppt|pptx|PDF",
//acceptMime: 'image/jpg,image/png,image/jpeg,file/pdf,file/xlsx',
exts: 'jpg|png|jpeg|pdf|PDF',
acceptMime: 'image/jpg,image/png,image/jpeg,application/pdf',
auto: false, //是否自动上传 默认为true
number: number, //最大上传数量
size: 1024 * 30, //最大文件大小单位k
@ -1538,13 +1540,15 @@ function getTypeImgConsPerson(str) {
function choseType(str) {
if (str.indexOf("jpg") > 0) {
return true;
} else if (str.indexOf("JPG") > 0) {
return true;
} else if (str.indexOf("png") > 0) {
return true;
} else if (str.indexOf("jpeg") > 0) {
return true;
} else if (str.indexOf("gif") > 0) {
return true;
} else {
}else {
return false;
}
}