Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zjxcxServer
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
zjxcxServer
Commits
ebd69d4f
Commit
ebd69d4f
authored
Feb 20, 2023
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
7eae744f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
base.ts
src/biz/fuHuqQi/base.ts
+6
-3
public.ts
src/routers/public.ts
+2
-1
No files found.
src/biz/fuHuqQi/base.ts
View file @
ebd69d4f
...
...
@@ -118,7 +118,8 @@ export async function updateFuHuaQiBaseData(uscc:string, param) {
*/
export
async
function
updateOrganizationData
(
uscc
:
string
,
param
)
{
let
skipKeyList
=
[
"virtualEnterpriseNum"
,
"hatchingGround"
,
"operationModelDes"
//todo 写到这里了 这里和甘明讨论好哪些是必填的
"name"
,
"virtualEnterpriseNum"
,
"hatchingGround"
,
"operationModelDes"
//todo 写到这里了 这里和甘明讨论好哪些是必填的
,
"logonTime"
,
"lv"
,
"identificationTime"
,
"industry"
,
"institutionalNature"
,
"foundingTeam"
,
"liaison"
,
"liaisonPhone"
,
"personInCharge"
,
"personInChargePhone"
,
];
tools
.
checkParamater
(
"更新孵化器基础数据"
,
OrganizationParamUpdateConfig
,
param
,
skipKeyList
);
...
...
@@ -189,7 +190,8 @@ export async function fuHuaQiBaseList(lv:number, institutionalNature:number, ind
changeData
.
operationModel
=
tools
.
changeEnumValue
(
OPERATIONMODEL
,
changeData
.
operationModel
);
if
(
changeData
.
operationModel
==
"_投资__孵化_类型"
){
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"__"
,
"+"
);
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"_"
,
"+"
);
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"_"
,
"“"
);
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"_"
,
"”"
);
}
changeData
.
foundingTeamStr
=
"无"
;
...
...
@@ -255,7 +257,8 @@ export async function outPutFuHuaQiBaseData(lv:number, institutionalNature:numbe
changeData
.
operationModel
=
tools
.
changeEnumValue
(
OPERATIONMODEL
,
changeData
.
operationModel
);
if
(
changeData
.
operationModel
==
"_投资__孵化_类型"
){
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"__"
,
"+"
);
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"_"
,
"+"
);
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"_"
,
"“"
);
changeData
.
operationModel
=
changeData
.
operationModel
.
replace
(
"_"
,
"”"
);
}
changeData
.
foundingTeamStr
=
"无"
;
...
...
src/routers/public.ts
View file @
ebd69d4f
...
...
@@ -65,7 +65,8 @@ export function operationModel(req, res) {
let
keyStr
=
key
;
if
(
parseInt
(
OPERATIONMODEL
[
key
])
==
OPERATIONMODEL
.
_
投资
__
孵化
_
类型
)
{
keyStr
=
keyStr
.
replace
(
"__"
,
"+"
);
keyStr
=
keyStr
.
replace
(
"_"
,
"+"
);
keyStr
=
keyStr
.
replace
(
"_"
,
"“"
);
keyStr
=
keyStr
.
replace
(
"_"
,
"”"
);
}
operationModelList
.
push
({
key
:
keyStr
,
value
:
OPERATIONMODEL
[
key
]});
}
...
...
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