Commit 3b9246b9 by dong

fix20221222

parent 9495ea21
...@@ -1149,8 +1149,9 @@ def areal_project(): ...@@ -1149,8 +1149,9 @@ def areal_project():
"id": project_obj.id, "id": project_obj.id,
"project_name": project_obj.project_name, "project_name": project_obj.project_name,
"investor_district": project_obj.investor_district, "investor_district": project_obj.investor_district,
"industry": project_obj.industry + '-' if project_obj.industry else '' + project_obj.industry2 if project_obj.industry2 else '', # "industry": project_obj.industry + '-' if project_obj.industry else '' + project_obj.industry2 if project_obj.industry2 else '',
"project_type": "", "industry": project_obj.industry,
"project_type": project_obj.industry_level,
"investment_volume": project_obj.investment_volume "investment_volume": project_obj.investment_volume
} for project_obj in project_obj_list] } for project_obj in project_obj_list]
return jsonify(code=RET.OK, return jsonify(code=RET.OK,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment