修改测试用例1

This commit is contained in:
guanj
2026-01-12 11:06:54 +08:00
parent 08afdddc51
commit e9d7231a75
16 changed files with 923 additions and 822 deletions

View File

@@ -1,20 +1,30 @@
import createAxios from '@/utils/request'
// 更新问题状态
export function auditFeedBack(data: any) {
return createAxios({
url: '/cs-system-boot/feedback/auditFeedBack',
method: 'post',
params: data
})
}
//下载文件
export function downLoadFile(filePath: any) {
return createAxios({
url: '/system-boot/file/download',
method: 'get',
responseType: 'blob',
params: { filePath: filePath }
})
import createAxios from '@/utils/request'
// 更新问题状态
export function auditFeedBack(data: any) {
return createAxios({
url: '/cs-system-boot/feedback/auditFeedBack',
method: 'post',
params: data
})
}
//下载文件
export function downLoadFile(filePath: any) {
return createAxios({
url: '/system-boot/file/download',
method: 'get',
responseType: 'blob',
params: { filePath: filePath }
})
}
//获取文件的一个短期url
export function getFileUrl(filePath: any) {
return createAxios({
url: '/system-boot/file/getFileUrl',
method: 'get',
// responseType: 'blob',
params: { filePath: filePath }
})
}