添加登录页面

This commit is contained in:
zk
2026-07-10 14:18:48 +08:00
parent 4585c824b7
commit 45b2c3073f
10 changed files with 470 additions and 3 deletions
@@ -0,0 +1,9 @@
/**
* 认证相关 API
*/
const authApi = {
/** 登录 */
login(username, password) {
return request.post('/public/login', { username, password });
}
};