Files
admin-govern/src/api/cs-system-boot/manage.ts

20 lines
472 B
TypeScript
Raw Normal View History

2024-01-16 16:31:11 +08:00
import createAxios from '@/utils/request'
// 更新问题状态
2024-10-25 16:03:44 +08:00
export function auditFeedBack(data: any) {
2024-01-16 16:31:11 +08:00
return createAxios({
url: '/cs-system-boot/feedback/auditFeedBack',
method: 'post',
2024-10-25 16:03:44 +08:00
params: data
2024-01-16 16:31:11 +08:00
})
}
//下载文件
2024-10-25 16:03:44 +08:00
export function downLoadFile(filePath: any) {
return createAxios({
url: '/system-boot/file/download',
method: 'get',
2024-10-25 16:03:44 +08:00
responseType: 'blob',
params: { filePath: filePath }
})
}