mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-09-06 14:47:54 +08:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
import request from '@/utils/request'
|
|
|
|
// 配置
|
|
export function getConfig() {
|
|
return request.get({ url: '/index/config' })
|
|
}
|
|
|
|
// 工作台主页
|
|
export function getWorkbench() {
|
|
return request.get({ url: '/index/console' })
|
|
}
|