[release]4.1.0 (#211)

This commit is contained in:
花裤衩
2019-04-19 20:41:52 +08:00
committed by GitHub
parent 4bbdf5ee0e
commit a5d4bbda75
92 changed files with 1916 additions and 1496 deletions

View File

@@ -1,13 +1,10 @@
import request from '@/utils/request'
export function login(username, password) {
export function login(data) {
return request({
url: '/user/login',
method: 'post',
data: {
username,
password
}
data
})
}