This commit is contained in:
仲么了
2024-02-19 13:44:32 +08:00
commit 361cbb713d
238 changed files with 202544 additions and 0 deletions

14
src/api/auth.ts Normal file
View File

@@ -0,0 +1,14 @@
import createAxios from '@/utils/request'
//登录获取token
export function getRouteMenu() {
return createAxios({
url: '/user-boot/function/getRouteMenu'
})
}
//获取字典
export function dictDataCache() {
return createAxios({
url: '/system-boot/dictType/dictDataCache'
})
}