Merge branch 'lh' 解决冲突
# Conflicts: # service/request.js
This commit is contained in:
@@ -210,10 +210,18 @@ const apiService = {
|
||||
resolve(service.get(url))
|
||||
})
|
||||
},
|
||||
editPersonInfo(data) {
|
||||
const url = `/center/userupdate`
|
||||
return new Promise((resolve, reject) => {
|
||||
resolve(service.post(url, data))
|
||||
//修改个人信息
|
||||
editPersonInfo(data){
|
||||
const url = `center/userupdate`
|
||||
return new Promise((resolve,reject) => {
|
||||
resolve(service.putWithFormData(url,data))
|
||||
})
|
||||
},
|
||||
//获取我的匹配
|
||||
getMyMatch(){
|
||||
const url = `/center/match/`
|
||||
return new Promise((resolve,reject) => {
|
||||
resolve(service.get(url))
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user