added ESlint 语法检测

This commit is contained in:
何秀钢
2021-06-02 14:11:45 +08:00
parent 3932a8fbf3
commit 2f0465a1a1
94 changed files with 5031 additions and 4790 deletions

View File

@@ -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
})
}