解决财务提现申请审批不能上传图片的问题

This commit is contained in:
weipengfei 2023-09-14 16:04:34 +08:00
parent 131a10182e
commit 733e393cc1
3 changed files with 14 additions and 6 deletions

View File

@ -1,5 +1,5 @@
NODE_ENV = 'development' NODE_ENV = 'development'
VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn/' VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn'
# VITE_APP_BASE_URL = 'https://worker-task.lihaink.cn/' # VITE_APP_BASE_URL = 'https://worker-task.lihaink.cn'

View File

@ -2,4 +2,4 @@
VITE_APP_BASE_URL = '' VITE_APP_BASE_URL = ''
# VITE_APP_BASE_URL = 'https://worker-task.lihaink.cn/' # VITE_APP_BASE_URL = 'https://worker-task.lihaink.cn'

View File

@ -66,7 +66,7 @@
style="width: 100%" style="width: 100%"
drag drag
:headers="{ Token: userStore.token }" :headers="{ Token: userStore.token }"
:action="base_url + '/upload/file'" :action="actionUrl"
:limit="1" :limit="1"
:on-success="handleFile" :on-success="handleFile"
:on-exceed="handleExceed" :on-exceed="handleExceed"
@ -186,6 +186,10 @@ const getDetail = async (row: Record<string, any>) => {
setFormData(data); setFormData(data);
}; };
//
const upload = ref(null);
//
const actionUrl = ref("");
const fileTypeList = [ const fileTypeList = [
"application/pdf", "application/pdf",
"image/jpeg", "image/jpeg",
@ -198,10 +202,14 @@ const beforeUpload = (rawFile: UploadRawFile) => {
ElMessage.error("请上传JPG/JPEG/PNG/GIF/PDF文件"); ElMessage.error("请上传JPG/JPEG/PNG/GIF/PDF文件");
return false; return false;
} }
if (rawFile.type != "application/pdf") {
actionUrl.value = base_url + "/upload/image";
} else {
actionUrl.value = base_url + "/upload/file";
}
return true;
}; };
//
const upload = ref(null);
const handleExceed = (files: any) => { const handleExceed = (files: any) => {
upload.value!.clearFiles(); upload.value!.clearFiles();
const file = files[0] as UploadRawFile; const file = files[0] as UploadRawFile;