Kaynağa Gözat

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

Xiaogang Liao 1 ay önce
ebeveyn
işleme
84e42dba39
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  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 })
 }