added ESlint 语法检测
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import service from '@/utils/request';
|
||||
import service from '@/utils/request'
|
||||
|
||||
// @Tags FileUploadAndDownload
|
||||
// @Summary 分页文件列表
|
||||
@@ -9,11 +9,11 @@ import service from '@/utils/request';
|
||||
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
|
||||
// @Router /fileUploadAndDownload/getFileList [post]
|
||||
export const getFileList = (data) => {
|
||||
return service({
|
||||
url: "/fileUploadAndDownload/getFileList",
|
||||
method: "post",
|
||||
data
|
||||
})
|
||||
return service({
|
||||
url: '/fileUploadAndDownload/getFileList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// @Tags FileUploadAndDownload
|
||||
@@ -24,9 +24,9 @@ export const getFileList = (data) => {
|
||||
// @Success 200 {string} json "{"success":true,"data":{},"msg":"返回成功"}"
|
||||
// @Router /fileUploadAndDownload/deleteFile [post]
|
||||
export const deleteFile = (data) => {
|
||||
return service({
|
||||
url: "/fileUploadAndDownload/deleteFile",
|
||||
method: "post",
|
||||
data
|
||||
})
|
||||
}
|
||||
return service({
|
||||
url: '/fileUploadAndDownload/deleteFile',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user