登录页面接口对接

This commit is contained in:
aoshiguchen
2022-08-02 22:39:58 +08:00
parent 93b3a605a0
commit 47d39878f7
7 changed files with 29 additions and 80 deletions
+9
View File
@@ -0,0 +1,9 @@
import request from '@/utils/request'
export function login(data) {
return request({
url: '/login',
method: 'post',
data
})
}