Merge branch 'lh' 解决冲突

# Conflicts:
#	service/request.js
This commit is contained in:
LuoShijie
2023-11-16 19:14:05 +08:00
4 changed files with 126 additions and 53 deletions

View File

@@ -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))
})
}
}