同步6/16
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { HandleLogVO, HandleLogForm, HandleLogQuery } from '@/api/system/HandleLog/type';
|
||||
import { UploadFiles, UploadUserFile } from 'element-plus';
|
||||
|
||||
/**
|
||||
* 查询办事记录列表
|
||||
@@ -61,3 +62,10 @@ export const delHandleLog = (id: string | number | Array<string | number>) => {
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
export const uploadAttachments = (files: FormData) => {
|
||||
return request({
|
||||
url: '/handleLog/uploadAttachments',
|
||||
method: 'post',
|
||||
data: files
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user