指标字典

This commit is contained in:
sjl
2024-11-04 18:43:24 +08:00
parent 9a9807230d
commit c0fcba6a25
10 changed files with 495 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import { Login } from './interface'
import { ADMIN as rePrefix } from '@/api/config/serviceName'
import http from '@/api'
import type { Dict } from '../interface'
/**
* @name 登录模块
*/
@@ -22,4 +23,10 @@ export const getAuthButtonListApi = () => {
// 用户退出登录
export const logoutApi = () => {
return http.post(`${rePrefix}/logout`)
}
}
//获取下拉框列表
export const getDictList = (params:string) =>{
return http.post('/dictData/dictDataCache',params)
}