workflow.js 711 Bytes
Newer Older
1
import * as constants from '../constants';
陈龙's avatar
陈龙 committed
2 3 4
const AccountBaseURL = '/PandaWorkFlow/WorkFlow/AccountManage';
export const uploadFileUrl = `${AccountBaseURL}/UploaderFiles`; // 上传文件链接
export const downloadFileUrl = `${AccountBaseURL}/DownloadFiles`; // 下载/播放文件链接
5 6 7 8 9 10 11 12 13 14 15
const API = {
    GET_DOWNLOADFILES: '/PandaInformatization/PandaWork/ProductManage/DownLoadFiles', // 下载附件  新附件下载接口   --2023/08/08 edit by zhangzhiwei
}
export const DownloadAccountFiles = (params, data) =>
    request({
        url: API.GET_DOWNLOADFILES,
        method: constants.REQUEST_METHOD_GET,
        type: constants.REQUEST_METHOD_GET,
        params,
        ...data
    });
16
export {API};