feat: 第一次提交,带登录

This commit is contained in:
limian
2025-04-11 16:53:24 +08:00
parent 57e2074dba
commit d69adde4ae
22 changed files with 588 additions and 11 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
* @Descripttion:
* @version: 1.0.0
* @Author: LyMy
* @Date: 2025-04-11 15:56:41
* @LastEditors: LyMy
* @LastEditTime: 2025-04-11 15:58:45
* @FilePath: \fish_game\src\api\login\login.js
*/
import request from '@/utils/request'
// 登录接口
export function login(data) {
return request.post('/Account/login', data)
}