配置 eslint 与 prettier

This commit is contained in:
tao
2026-01-14 16:35:46 +08:00
parent 09b921009e
commit 317f2847ac
65 changed files with 6469 additions and 3487 deletions

View File

@@ -2,51 +2,51 @@ import request from '@/api/request'
// 查询字典数据列表
export function listData(params: any) {
return request({
url: '/system/dict/data/list',
method: 'get',
params
})
return request({
url: '/system/dict/data/list',
method: 'get',
params,
})
}
// 查询字典数据详细
export function getData(dictCode: string) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'get'
})
return request({
url: '/system/dict/data/' + dictCode,
method: 'get',
})
}
// 根据字典类型查询字典数据信息
export function getDicts(dictType: string) {
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get'
})
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get',
})
}
// 新增字典数据
export function addData(data: any) {
return request({
url: '/system/dict/data',
method: 'post',
data
})
return request({
url: '/system/dict/data',
method: 'post',
data,
})
}
// 修改字典数据
export function updateData(data: any) {
return request({
url: '/system/dict/data',
method: 'put',
data
})
return request({
url: '/system/dict/data',
method: 'put',
data,
})
}
// 删除字典数据
export function delData(dictCode: string) {
return request({
url: '/system/dict/data/' + dictCode,
method: 'delete'
})
return request({
url: '/system/dict/data/' + dictCode,
method: 'delete',
})
}

View File

@@ -1,2 +1,2 @@
export * from './data'
export * from './type'
export * from './type'

View File

@@ -3,59 +3,59 @@ import type { ID } from '@/api/common'
// 查询字典类型列表
export function listType(params: any) {
return request({
url: "/system/dict/type/list",
method: "get",
params,
});
return request({
url: '/system/dict/type/list',
method: 'get',
params,
})
}
// 查询字典类型详细
export function getType(dictId: ID) {
return request({
url: "/system/dict/type/" + dictId,
method: "get",
});
return request({
url: '/system/dict/type/' + dictId,
method: 'get',
})
}
// 新增字典类型
export function addType(data: any) {
return request({
url: "/system/dict/type",
method: "post",
data,
});
return request({
url: '/system/dict/type',
method: 'post',
data,
})
}
// 修改字典类型
export function updateType(data: any) {
return request({
url: "/system/dict/type",
method: "put",
data,
});
return request({
url: '/system/dict/type',
method: 'put',
data,
})
}
// 删除字典类型
export function delType(dictId: ID) {
return request({
url: "/system/dict/type/" + dictId,
method: "delete",
});
return request({
url: '/system/dict/type/' + dictId,
method: 'delete',
})
}
// 刷新字典缓存
export function refreshCache() {
return request({
url: "/system/dict/type/refreshCache",
method: "delete",
});
return request({
url: '/system/dict/type/refreshCache',
method: 'delete',
})
}
// 获取字典选择框列表
export function getOptions() {
return request({
url: "/system/dict/type/optionselect",
method: "get",
});
return request({
url: '/system/dict/type/optionselect',
method: 'get',
})
}

View File

@@ -1,27 +1,27 @@
import request from '@/api/request'
import type { LoginInfo } from './model';
import type { LoginInfo } from './model'
// 用户登录
export function login(data: LoginInfo) {
return request({
url: '/login',
method: 'post',
data
})
return request({
url: '/login',
method: 'post',
data,
})
}
// 获取验证码
export function getCaptcha() {
return request({
url: '/captchaImage',
method: 'get'
})
return request({
url: '/captchaImage',
method: 'get',
})
}
// 退出登录
export function logout() {
return request({
url: '/logout',
method: 'post'
})
return request({
url: '/logout',
method: 'post',
})
}

View File

@@ -1,6 +1,6 @@
export interface LoginInfo {
username: string
password: string
uuid: string
code: string
}
username: string
password: string
uuid: string
code: string
}