diff --git a/api/api_v1/endpoints/forms.py b/api/api_v1/endpoints/forms.py index f145837..1420ef1 100644 --- a/api/api_v1/endpoints/forms.py +++ b/api/api_v1/endpoints/forms.py @@ -762,14 +762,14 @@ async def man_info_form( if education: data['education'] = education_dict.get(education, '大专') if work_exp: - data['work_exp'] = str(work_exp) + '年' + data['work_exp'] = str(int(work_exp)) + '年' else: data['work_exp'] = '一年以内' new_res = {k: v for k, v in data.items() if k != 'work_list'} res_data.append(new_res) level_list = { - "uid": "玩家id", + "uid": "用户id", "age": "年龄", "gender": "性别", "name": "姓名",