Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mancheng
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mancheng
Commits
c1d6cf56
Commit
c1d6cf56
authored
Apr 18, 2023
by
dong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix20230417
parent
79cf087d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
apps/big_data/view.py
+10
-10
No files found.
apps/big_data/view.py
View file @
c1d6cf56
...
...
@@ -306,16 +306,16 @@ def major_project_detail():
project
=
Project
.
query
.
get
(
id
)
data
=
{
"id"
:
project
.
id
,
# 工程名
"name"
:
project
.
name
,
# 工程名
"district"
:
project
.
district
,
# 区县名称
"type"
:
project
.
type
,
# 工程类型
"money"
:
project
.
money
,
# 项目投资金额
"background"
:
project
.
background
,
# 项目背景
"content"
:
project
.
content
,
# 项目的具体内容
"way"
:
project
.
way
,
# 拟引资方式及内容
"company"
:
project
.
company
,
# 招商单位
"contact"
:
project
.
contact
,
# 联系方式
"email"
:
project
.
email
,
# 电子邮箱
"name"
:
project
.
name
if
project
.
name
else
''
,
# 工程名
"district"
:
project
.
district
if
project
.
district
else
''
,
# 区县名称
"type"
:
project
.
type
if
project
.
type
else
''
,
# 工程类型
"money"
:
project
.
money
if
project
.
money
else
''
,
# 项目投资金额
"background"
:
project
.
background
if
project
.
background
else
''
,
# 项目背景
"content"
:
project
.
content
if
project
.
content
else
''
,
# 项目的具体内容
"way"
:
project
.
way
if
project
.
way
else
''
,
# 拟引资方式及内容
"company"
:
project
.
company
if
project
.
company
else
''
,
# 招商单位
"contact"
:
project
.
contact
if
project
.
contact
else
''
,
# 联系方式
"email"
:
project
.
email
if
project
.
email
else
''
,
# 电子邮箱
"progress"
:
'落地项目'
if
project
.
project_stage_id
==
1
else
'招商项目'
if
project
.
project_stage_id
==
2
else
''
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment