14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
|
|
import { getAction, deleteAction, putAction, postAction, httpAction,uploadAction } from '@/api/manage'
|
||
|
|
|
||
|
|
const getFileLinkInfo = (params)=>getAction("/fileDataLink/getFileLinkInfo",params);
|
||
|
|
const processFile = (params)=>postAction("/fileDataLink/processFile",params);
|
||
|
|
|
||
|
|
|
||
|
|
export {
|
||
|
|
getFileLinkInfo,
|
||
|
|
processFile
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|