feat:添加admin相关接口

This commit is contained in:
2025-11-13 15:05:54 +08:00
parent 11cb40c86a
commit 067e0539ba
58 changed files with 18736 additions and 273 deletions
+9
View File
@@ -0,0 +1,9 @@
import {http2} from "@/utils/request.js";
/**新增goedge服务器 */
export const addGoedgeServer = (data) => {
return http2.post('/api/v1/admin/api/goedge/add_server', data,{
headers:{
'Content-Type':'multipart/form-data'
}
})
}