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-09-11 19:39:55 +08:00
|
|
|
|
|
|
|
|
//下载文件
|
2024-10-25 16:03:44 +08:00
|
|
|
export function downLoadFile(filePath: any) {
|
2024-09-11 19:39:55 +08:00
|
|
|
return createAxios({
|
|
|
|
|
url: '/system-boot/file/download',
|
|
|
|
|
method: 'get',
|
2024-10-25 16:03:44 +08:00
|
|
|
responseType: 'blob',
|
|
|
|
|
params: { filePath: filePath }
|
2024-09-11 19:39:55 +08:00
|
|
|
})
|
|
|
|
|
}
|