Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yuyixcx
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
node_server
yuyixcx
Commits
779b9d09
Commit
779b9d09
authored
Feb 13, 2025
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
488d2d17
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
6 deletions
+19
-6
enterpriseInfo.ts
src/biz/enterpriseInfo.ts
+0
-0
enterprise.ts
src/config/eccParam/enterprise.ts
+2
-2
enum.ts
src/config/enum/enum.ts
+12
-0
errorEnum.ts
src/config/enum/errorEnum.ts
+2
-1
enterpriseInfo.ts
src/routers/enterpriseInfo.ts
+3
-3
No files found.
src/biz/enterpriseInfo.ts
View file @
779b9d09
This diff is collapsed.
Click to expand it.
src/config/eccParam/enterprise.ts
View file @
779b9d09
...
...
@@ -96,8 +96,8 @@ export const EnterpriseFinancingUpdateConfig = {
financingAmount
:{
key
:
"Number"
},
//融资金额(万元)
financingRounds
:{
key
:
"Number"
},
//融资轮次【枚举】
fuHuaQiInvestment
:{
key
:
"Number"
},
//孵化器是否参与投资【枚举】
fuHuaQiInvestmentStyle
:{
key
:
"String"
},
//孵化器投资方式
fuHuaQiInvestmentAmount
:{
key
:
"Number"
},
//孵化器投资金额
fuHuaQiInvestmentStyle
:{
key
:
"String"
,
notMustHave
:
true
},
//孵化器投资方式
fuHuaQiInvestmentAmount
:{
key
:
"Number"
,
notMustHave
:
true
},
//孵化器投资金额
investmentDate
:{
key
:
"Number"
},
//获得投资时间
investmentInstitutionsName
:{
key
:
"String"
},
//投资机构名称
valuation
:{
key
:
"String"
},
//估值
...
...
src/config/enum/enum.ts
View file @
779b9d09
...
...
@@ -133,3 +133,14 @@ export enum FINANCINGROUNDS {
C
轮
,
C
轮以上
,
}
export
enum
STATE
{
否
=
0
,
是
=
1
}
export
enum
OUTCOME
{
未解决
=
0
,
已解决
}
\ No newline at end of file
src/config/enum/errorEnum.ts
View file @
779b9d09
...
...
@@ -25,7 +25,8 @@ export enum ERRORENUM {
账号或密码错误
,
不可重复添加同一年度数据
,
数据不存在
,
不可重复提交
不可重复提交
,
存在重复的年份数据
}
export
enum
ERRORCODEENUM
{
...
...
src/routers/enterpriseInfo.ts
View file @
779b9d09
...
...
@@ -456,8 +456,8 @@ async function patentList(req, res) {
*/
async
function
patentUpdate
(
req
,
res
)
{
const
UserInfo
=
req
.
userInfo
;
let
{
param
,
t
Id
}
=
req
.
body
let
result
=
await
enterpriseInfoBiz
.
updateEnterprisePatentInfo
(
UserInfo
.
eId
,
t
Id
,
param
);
let
{
param
,
p
Id
}
=
req
.
body
let
result
=
await
enterpriseInfoBiz
.
updateEnterprisePatentInfo
(
UserInfo
.
eId
,
p
Id
,
param
);
res
.
success
(
result
);
}
...
...
@@ -763,8 +763,8 @@ async function homePageTask(req, res) {
async
function
homePageYear
(
req
,
res
)
{
let
result
=
{
dataList
:[
{
year
:
2023
},
{
year
:
2024
},
{
year
:
2025
},
]
};
...
...
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