解决财务提现申请审批不能上传图片的问题
This commit is contained in:
parent
131a10182e
commit
733e393cc1
@ -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'
|
@ -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'
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user