Browse Source

feat: 注册引导-前端api新增backfillProfile

Xiaogang Liao 1 month ago
parent
commit
84e42dba39
1 changed files with 5 additions and 0 deletions
  1. 5 0
      cfc-frontend/utils/api.js

+ 5 - 0
cfc-frontend/utils/api.js

@@ -257,6 +257,11 @@ export const updateUserInfo = (data) => {
 	return request('/api/user/update', 'POST', data)
 }
 
+// 就地补充信息回写(活动报名等场景按需补充后自动回写个人资料)
+export const backfillProfile = (data) => {
+	return request('/api/user/profile/backfill', 'POST', data)
+}
+
 export const joinFamily = (inviteCode) => {
 	return request('/api/user/join-family', 'POST', { inviteCode })
 }