feat: vue3 axios add download function

This commit is contained in:
xingyu
2022-07-25 21:03:14 +08:00
parent 611e11ae23
commit b085f35dfe
26 changed files with 48 additions and 37 deletions

View File

@ -9,5 +9,5 @@ export const getApiAccessLogPageApi = (params) => {
// 导出API 访问日志
export const exportApiAccessLogApi = (params) => {
return request.get({ url: '/infra/api-access-log/export-excel', params, responseType: 'blob' })
return request.download({ url: '/infra/api-access-log/export-excel', params })
}

View File

@ -16,5 +16,8 @@ export const updateApiErrorLogPageApi = (id: number, processStatus: number) => {
// 导出API 访问日志
export const exportApiErrorLogApi = (params) => {
return request.get({ url: '/infra/api-error-log/export-excel', params, responseType: 'blob' })
return request.download({
url: '/infra/api-error-log/export-excel',
params
})
}

View File

@ -40,7 +40,7 @@ export const previewCodegenApi = (id: number) => {
// 下载生成代码
export const downloadCodegenApi = (id: number) => {
return request.get({ url: '/infra/codegen/download?tableId=' + id, responseType: 'blob' })
return request.download({ url: '/infra/codegen/download?tableId=' + id })
}
// 获得表定义

View File

@ -35,5 +35,5 @@ export const deleteConfigApi = (id: number) => {
// 导出参数
export const exportConfigApi = (params) => {
return request.get({ url: '/infra/config/export', params, responseType: 'blob' })
return request.download({ url: '/infra/config/export', params })
}

View File

@ -4,15 +4,15 @@ const request = useAxios()
// 导出Html
export const exportHtmlApi = () => {
return request.get({ url: '/infra/db-doc/export-html', responseType: 'blob' })
return request.download({ url: '/infra/db-doc/export-html' })
}
// 导出Word
export const exportWordApi = () => {
return request.get({ url: '/infra/db-doc/export-word', responseType: 'blob' })
return request.download({ url: '/infra/db-doc/export-word' })
}
// 导出Markdown
export const exportMarkdownApi = () => {
return request.get({ url: '/infra/db-doc/export-markdown', responseType: 'blob' })
return request.download({ url: '/infra/db-doc/export-markdown' })
}

View File

@ -30,7 +30,7 @@ export const deleteJobApi = (id: number) => {
// 导出定时任务调度
export const exportJobApi = (params) => {
return request.get({ url: '/infra/job/export-excel', params, responseType: 'blob' })
return request.download({ url: '/infra/job/export-excel', params })
}
// 任务状态修改

View File

@ -14,9 +14,8 @@ export const getJobLogApi = (id: number) => {
// 导出定时任务日志
export const exportJobLogApi = (params) => {
return request.get({
return request.download({
url: '/infra/job-log/export-excel',
params,
responseType: 'blob'
params
})
}

View File

@ -39,7 +39,7 @@ export const deleteAppApi = (id: number) => {
// 导出支付应用
export const exportAppApi = (params) => {
return request.get({ url: '/pay/app/export-excel', params, responseType: 'blob' })
return request.download({ url: '/pay/app/export-excel', params })
}
// 根据商ID称搜索应用列表

View File

@ -35,5 +35,5 @@ export const deleteChannelApi = (id: number) => {
// 导出支付渠道
export const exportChannelApi = (params) => {
return request.get({ url: '/pay/channel/export-excel', params, responseType: 'blob' })
return request.download({ url: '/pay/channel/export-excel', params })
}

View File

@ -40,7 +40,7 @@ export const deleteMerchantApi = (id: number) => {
// 导出支付商户
export const exportMerchantApi = (params) => {
return request.get({ url: '/pay/merchant/export-excel', params, responseType: 'blob' })
return request.download({ url: '/pay/merchant/export-excel', params })
}
// 支付商户状态修改
export const changeMerchantStatusApi = (id: number, status: number) => {

View File

@ -30,5 +30,5 @@ export const deleteOrderApi = async (id: number) => {
// 导出支付订单
export const exportOrderApi = async (params) => {
return await request.get({ url: '/pay/order/export-excel', params, responseType: 'blob' })
return await request.download({ url: '/pay/order/export-excel', params })
}

View File

@ -30,5 +30,5 @@ export const deleteRefundApi = (id: number) => {
// 导出退款订单
export const exportRefundApi = (params) => {
return request.get({ url: '/pay/refund/export-excel', params, responseType: 'blob' })
return request.download({ url: '/pay/refund/export-excel', params })
}

View File

@ -29,5 +29,5 @@ export const deleteErrorCodeApi = (id: number) => {
}
// 导出错误码
export const excelErrorCodeApi = (params) => {
return request.get({ url: '/system/error-code/export-excel', params, responseType: 'blob' })
return request.download({ url: '/system/error-code/export-excel', params })
}

View File

@ -8,5 +8,5 @@ export const getLoginLogPageApi = (params) => {
}
// 导出登录日志
export const exportLoginLogApi = (params) => {
return request.get({ url: '/system/login-log/export', params, responseType: 'blob' })
return request.download({ url: '/system/login-log/export', params })
}

View File

@ -8,5 +8,5 @@ export const getOperateLogPageApi = (params) => {
}
// 导出操作日志
export const exportOperateLogApi = (params) => {
return request.get({ url: '/system/operate-log/export', params, responseType: 'blob' })
return request.download({ url: '/system/operate-log/export', params })
}

View File

@ -34,5 +34,5 @@ export const deletePostApi = async (id: number) => {
// 导出岗位
export const exportPostApi = async (params) => {
return await request.get({ url: '/system/post/export', params, responseType: 'blob' })
return await request.download({ url: '/system/post/export', params })
}

View File

@ -30,7 +30,7 @@ export const deleteSensitiveWordApi = (id: number) => {
// 导出敏感词
export const exportSensitiveWordApi = (params) => {
return request.get({ url: '/system/sensitive-word/export', params, responseType: 'blob' })
return request.download({ url: '/system/sensitive-word/export-excel', params })
}
// 获取所有敏感词的标签数组

View File

@ -9,5 +9,5 @@ export const getSmsLogPageApi = (params) => {
// 导出短信日志
export const exportSmsLogApi = (params) => {
return request.get({ url: '/system/sms-log/export', params, responseType: 'blob' })
return request.download({ url: '/system/sms-log/export', params })
}

View File

@ -35,5 +35,8 @@ export const sendSmsApi = (data) => {
// 导出短信模板
export const exportPostApi = (params) => {
return request.get({ url: '/system/sms-template/export-excel', params, responseType: 'blob' })
return request.download({
url: '/system/sms-template/export-excel',
params
})
}

View File

@ -30,5 +30,5 @@ export const deleteTenantApi = (id: number) => {
// 导出租户
export const exportTenantApi = (params) => {
return request.get({ url: '/system/tenant/export-excel', params, responseType: 'blob' })
return request.download({ url: '/system/tenant/export-excel', params })
}

View File

@ -30,12 +30,12 @@ export const deleteUserApi = (id: number) => {
// 导出用户
export const exportUserApi = (params) => {
return request.get({ url: '/system/user/export', params, responseType: 'blob' })
return request.download({ url: '/system/user/export', params })
}
// 下载用户导入模板
export const importUserTemplateApi = () => {
return request.get({ url: '/system/user/get-import-template', responseType: 'blob' })
return request.download({ url: '/system/user/get-import-template' })
}
// 用户密码重置