add admin conf

This commit is contained in:
ljw
2024-11-11 22:26:55 +08:00
parent a1ed3df60f
commit 4d1da2e89e
6 changed files with 48 additions and 23 deletions
+22
View File
@@ -0,0 +1,22 @@
import request from '@/utils/request'
export function server () {
return request({
url: '/config/server',
method: 'get',
})
}
export function app () {
return request({
url: '/config/app',
method: 'get',
})
}
export function admin () {
return request({
url: '/config/admin',
method: 'get',
})
}