|
|
@ -11,6 +11,7 @@ module.exports = { |
|
|
|
getGridList: getGridList, |
|
|
|
changeGrid: changeGrid, |
|
|
|
completeInfo: completeInfo, |
|
|
|
completeResidentInfo: completeResidentInfo, |
|
|
|
completeResidentInfoV2: completeResidentInfoV2, |
|
|
|
completePartyInfoV2: completePartyInfoV2, |
|
|
|
completeCompanyInfo: completeCompanyInfo, |
|
|
@ -164,6 +165,10 @@ function gridLeaderRegister(mobile, smsCode, wxCode) { |
|
|
|
function completeInfo(data) { |
|
|
|
return fly.post('app-user/user/completeInfo', data) |
|
|
|
} |
|
|
|
// 居民 完善个人信息 传验证码
|
|
|
|
function completeResidentInfo(para) { |
|
|
|
return fly.post("app-user/user/completeResidentInfo", para) |
|
|
|
} |
|
|
|
// 居民 完善个人信息v2 不需要穿验证码
|
|
|
|
function completeResidentInfoV2(para) { |
|
|
|
return fly.post("app-user/user/v2/completeResidentInfo", para) |
|
|
|