feat: 更换应用框架为ElectronFofge

This commit is contained in:
duanshuwen
2025-10-12 14:12:29 +08:00
parent 02b85f3251
commit ebac04b786
67 changed files with 7935 additions and 6104 deletions

16
src/api/login.ts Normal file
View File

@@ -0,0 +1,16 @@
import request from '@utils/request'
export const login = (data: object) => {
return request({
url: '/login',
method: 'post',
data
})
}
export const logout = () => {
return request({
url: '/logout',
method: 'post'
})
}