hookehuyr

fix(CompleteInfoPage): 移除更新用户信息时的手机号字段

由于业务需求变更,不再需要更新用户手机号信息
...@@ -117,7 +117,7 @@ const handleConfirm = async () => { ...@@ -117,7 +117,7 @@ const handleConfirm = async () => {
117 117
118 const res = await updateUserInfoAPI({ 118 const res = await updateUserInfoAPI({
119 name: form.name, 119 name: form.name,
120 - mobile: form.phone, 120 + // mobile: form.phone,
121 idcard: form.idCard 121 idcard: form.idCard
122 }) 122 })
123 if (res.code) { 123 if (res.code) {
......