From 3121eed16b81f32ebd3b3ea55c85c48454363104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=80=C3=AE=C3=97=C3=9A=C3=95=C3=B1?= Date: Mon, 19 Sep 2022 10:05:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/api_v1/endpoints/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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": "姓名",