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
92196bc7
Commit
92196bc7
authored
Feb 10, 2023
by
孙香冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
7b445b32
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
31 additions
and
17 deletions
+31
-17
enterprise.ts
src/biz/enterprise/enterprise.ts
+3
-3
financing.ts
src/biz/enterprise/financing.ts
+3
-3
base.ts
src/biz/fuHuqQi/base.ts
+6
-3
user.ts
src/biz/fuHuqQi/user.ts
+8
-2
ojbectResultKeyConfig.ts
src/config/ojbectResultKeyConfig.ts
+1
-0
enterprise.ts
src/data/enterprise/enterprise.ts
+4
-1
fuhuaqi.ts
src/data/fuHuaQi/fuhuaqi.ts
+1
-0
admin.ts
src/routers/admin.ts
+5
-5
No files found.
src/biz/enterprise/enterprise.ts
View file @
92196bc7
...
@@ -137,16 +137,16 @@ export async function deleteEnterpriseByUscc(uscc:string) {
...
@@ -137,16 +137,16 @@ export async function deleteEnterpriseByUscc(uscc:string) {
/**
/**
* 获取在孵企业信息列表
* 获取在孵企业信息列表
* @param time 新注册时间/迁入时间
* @param time 新注册时间/迁入时间
* @param
belongToIncubator
所属孵化器
* @param
fuHuaQiUscc
所属孵化器
* @param industry 行业领域
* @param industry 行业领域
* @param isNaturalPersonHolding 自然人控股
* @param isNaturalPersonHolding 自然人控股
* @param page 页数
* @param page 页数
* @returns
* @returns
*/
*/
export
async
function
enterpriseList
(
time
:
number
,
belongToIncubator
:
number
,
industry
:
number
,
isNaturalPersonHolding
:
boolean
,
page
:
number
)
{
export
async
function
enterpriseList
(
time
:
number
,
fuHuaQiUscc
:
string
,
industry
:
number
,
isNaturalPersonHolding
:
boolean
,
page
:
number
)
{
let
selectParam
:
any
=
{};
let
selectParam
:
any
=
{};
if
(
time
)
selectParam
.
logonTime
=
time
;
selectParam
.
timeOfImmigration
=
time
;
if
(
time
)
selectParam
.
logonTime
=
time
;
selectParam
.
timeOfImmigration
=
time
;
if
(
belongToIncubator
)
selectParam
.
belongToIncubator
=
belongToIncubator
;
if
(
fuHuaQiUscc
)
selectParam
.
fuHuaQiUscc
=
fuHuaQiUscc
;
if
(
industry
)
selectParam
.
industry
=
industry
;
if
(
industry
)
selectParam
.
industry
=
industry
;
if
(
isNaturalPersonHolding
)
selectParam
.
isNaturalPersonHolding
=
isNaturalPersonHolding
;
if
(
isNaturalPersonHolding
)
selectParam
.
isNaturalPersonHolding
=
isNaturalPersonHolding
;
...
...
src/biz/enterprise/financing.ts
View file @
92196bc7
...
@@ -119,16 +119,16 @@ export async function getFinancingByName(uscc:string) {
...
@@ -119,16 +119,16 @@ export async function getFinancingByName(uscc:string) {
/**
/**
* 融资企业信息列表
* 融资企业信息列表
* @param month 数据月份 目前数据库没有该字段
* @param month 数据月份 目前数据库没有该字段
* @param
belongToIncubator 所属孵化器
* @param
fuHuaQiUscc 孵化器信用代码
* @param industry 行业领域
* @param industry 行业领域
* @param fuHuaQiInvestment 孵化器是否参与投资
* @param fuHuaQiInvestment 孵化器是否参与投资
* @param page 页数
* @param page 页数
* @returns
* @returns
*/
*/
export
async
function
financingList
(
month
:
string
,
belongToIncubator
:
number
,
industry
:
string
,
fuHuaQiInvestment
:
boolean
,
page
:
number
)
{
export
async
function
financingList
(
month
:
string
,
fuHuaQiUscc
:
string
,
industry
:
string
,
fuHuaQiInvestment
:
boolean
,
page
:
number
)
{
let
selectParam
:
any
=
{};
let
selectParam
:
any
=
{};
if
(
month
)
selectParam
.
month
=
month
;
if
(
month
)
selectParam
.
month
=
month
;
if
(
belongToIncubator
)
selectParam
.
belongToIncubator
=
belongToIncubator
;
if
(
fuHuaQiUscc
)
selectParam
.
fuHuaQiUscc
=
fuHuaQiUscc
;
if
(
industry
)
selectParam
.
industry
=
industry
;
if
(
industry
)
selectParam
.
industry
=
industry
;
if
(
fuHuaQiInvestment
)
selectParam
.
fuHuaQiInvestment
=
fuHuaQiInvestment
;
if
(
fuHuaQiInvestment
)
selectParam
.
fuHuaQiInvestment
=
fuHuaQiInvestment
;
...
...
src/biz/fuHuqQi/base.ts
View file @
92196bc7
...
@@ -6,8 +6,8 @@
...
@@ -6,8 +6,8 @@
*/
*/
import
moment
=
require
(
"moment"
);
import
moment
=
require
(
"moment"
);
import
{
BaseParamUpdateConfig
}
from
"../../config/checkParamConfig"
;
import
{
BaseParamUpdateConfig
}
from
"../../config/checkParamConfig"
;
import
{
findEnterpriseCountByFuHuaQiUscc
,
groupFindEnterprise
}
from
"../../data/enterprise/enterprise"
;
import
{
findEnterpriseCount
,
findEnterpriseCount
ByFuHuaQiUscc
,
groupFindEnterprise
}
from
"../../data/enterprise/enterprise"
;
import
{
findFuHuaQiByUSCC
,
findFuHuaQiCount
,
findFuHuaQiList
}
from
"../../data/fuHuaQi/fuhuaqi"
;
import
{
findFuHuaQiByUSCC
,
findFuHuaQiCount
,
findFuHuaQiList
,
groupFindFuHuaQi
}
from
"../../data/fuHuaQi/fuhuaqi"
;
import
*
as
tools
from
"../../util/tools"
;
import
*
as
tools
from
"../../util/tools"
;
import
{
FuHuaQiBaseListConfig
}
from
"../../config/ojbectResultKeyConfig"
;
import
{
FuHuaQiBaseListConfig
}
from
"../../config/ojbectResultKeyConfig"
;
...
@@ -42,7 +42,8 @@ export async function updateFuHuaQiBaseData(uscc:string, param) {
...
@@ -42,7 +42,8 @@ export async function updateFuHuaQiBaseData(uscc:string, param) {
*/
*/
export
async
function
selectFuHuaQiBaseData
(
uscc
:
string
)
{
export
async
function
selectFuHuaQiBaseData
(
uscc
:
string
)
{
let
dataBaseInfo
=
await
findFuHuaQiByUSCC
(
uscc
);
let
dataBaseInfo
=
await
findFuHuaQiByUSCC
(
uscc
);
let
enterpriseTotal
=
await
findEnterpriseCount
({
fuHuaQiUscc
:
uscc
});
//企业总数
let
numOfEntities
=
enterpriseTotal
-
dataBaseInfo
.
virtualEnterpriseNum
;
//企业总数 - 虚拟企业数量
let
keyList
=
[
let
keyList
=
[
"name"
,
"operationName"
,
"uscc"
,
"virtualEnterpriseNum"
,
"logonTime"
,
"incubatedAcreage"
,
"acreageTotal"
,
"acreagePersonalUse"
,
"name"
,
"operationName"
,
"uscc"
,
"virtualEnterpriseNum"
,
"logonTime"
,
"incubatedAcreage"
,
"acreageTotal"
,
"acreagePersonalUse"
,
"lv"
,
"identificationTime"
,
"industry"
,
"institutionalNature"
,
"liaison"
,
"liaisonPhone"
,
"personInCharge"
,
"personInChargePhone"
,
"lv"
,
"identificationTime"
,
"industry"
,
"institutionalNature"
,
"liaison"
,
"liaisonPhone"
,
"personInCharge"
,
"personInChargePhone"
,
...
@@ -51,6 +52,8 @@ export async function selectFuHuaQiBaseData(uscc:string) {
...
@@ -51,6 +52,8 @@ export async function selectFuHuaQiBaseData(uscc:string) {
keyList
.
forEach
(
key
=>
{
keyList
.
forEach
(
key
=>
{
data
[
key
]
=
dataBaseInfo
[
key
];
data
[
key
]
=
dataBaseInfo
[
key
];
data
[
"enterpriseTotal"
]
=
enterpriseTotal
;
data
[
"numOfEntities"
]
=
numOfEntities
;
});
});
return
data
;
return
data
;
...
...
src/biz/fuHuqQi/user.ts
View file @
92196bc7
...
@@ -123,6 +123,11 @@ export async function logout(uscc:string):Promise<object> {
...
@@ -123,6 +123,11 @@ export async function logout(uscc:string):Promise<object> {
/**
/**
* 修改账号状态
* 修改账号状态
*/
*/
export
async
function
updateState
(
userStatem
,
uscc
)
{
export
async
function
updateState
(
userStatem
:
boolean
,
uscc
:
string
)
{
let
fuhuaqiInfo
=
await
fuhuaqiData
.
findFuHuaQiByUSCC
(
uscc
);
if
(
!
fuhuaqiInfo
)
throw
new
BizError
(
ERRORENUM
.
账号不存在
);
fuhuaqiInfo
.
userStatem
=
userStatem
;
await
fuhuaqiInfo
.
save
();
console
.
log
(
await
fuhuaqiInfo
.
save
());
return
{
isSuccess
:
true
};
}
}
\ No newline at end of file
src/config/ojbectResultKeyConfig.ts
View file @
92196bc7
...
@@ -103,6 +103,7 @@ export const FuHuaQiListConfig = {
...
@@ -103,6 +103,7 @@ export const FuHuaQiListConfig = {
liaison
:{
key
:
"联系人"
},
liaison
:{
key
:
"联系人"
},
liaisonPhone
:{
key
:
"负责人"
},
liaisonPhone
:{
key
:
"负责人"
},
personInChargePhone
:{
key
:
"负责人联系电话"
},
personInChargePhone
:{
key
:
"负责人联系电话"
},
userState
:{
key
:
"账号状态"
}
}
}
...
...
src/data/enterprise/enterprise.ts
View file @
92196bc7
...
@@ -23,7 +23,6 @@ const enterpriseSchema = new Schema({
...
@@ -23,7 +23,6 @@ const enterpriseSchema = new Schema({
leasedArea
:
Number
,
//租赁面积(平方米)
leasedArea
:
Number
,
//租赁面积(平方米)
draftLock
:{
type
:
Boolean
,
default
:
false
},
//草稿锁,true为提交之后,false为草稿
draftLock
:{
type
:
Boolean
,
default
:
false
},
//草稿锁,true为提交之后,false为草稿
createTime
:
Number
,
//录入时间
createTime
:
Number
,
//录入时间
belongToIncubator
:[
Number
],
//所属孵化器
});
});
var
enterpriseModel
;
var
enterpriseModel
;
...
@@ -131,6 +130,10 @@ export async function deleteEnterprise(uscc:string) {
...
@@ -131,6 +130,10 @@ export async function deleteEnterprise(uscc:string) {
return
await
enterpriseModel
.
find
(
selectParam
).
skip
(
skipCount
).
limit
(
10
);
return
await
enterpriseModel
.
find
(
selectParam
).
skip
(
skipCount
).
limit
(
10
);
}
}
export
async
function
findEnterprise
(
selectParam
)
{
return
await
enterpriseModel
.
find
(
selectParam
);
}
/**
/**
* 获取所有孵化器
* 获取所有孵化器
* @param selectParam 查询参数
* @param selectParam 查询参数
...
...
src/data/fuHuaQi/fuhuaqi.ts
View file @
92196bc7
...
@@ -153,6 +153,7 @@ export async function findAllFuHuaQiOperationNameMap() {
...
@@ -153,6 +153,7 @@ export async function findAllFuHuaQiOperationNameMap() {
return
result
;
return
result
;
}
}
/**
/**
* 获取所有孵化器
* 获取所有孵化器
* @param selectParam 查询参数
* @param selectParam 查询参数
...
...
src/routers/admin.ts
View file @
92196bc7
...
@@ -76,11 +76,11 @@ async function fuHuaQiBaseList(req, res) {
...
@@ -76,11 +76,11 @@ async function fuHuaQiBaseList(req, res) {
* @param res
* @param res
*/
*/
async
function
getFinancingList
(
req
,
res
)
{
async
function
getFinancingList
(
req
,
res
)
{
let
reqConf
=
{
month
:
'string'
,
belongToIncubator
:
'string'
,
industry
:
'string'
,
fuHuaQiInvestment
:
'boolean'
,
page
:
'number'
};
let
reqConf
=
{
month
:
'string'
,
fuHuaQiUscc
:
'string'
,
industry
:
'string'
,
fuHuaQiInvestment
:
'boolean'
,
page
:
'number'
};
let
{
month
,
belongToIncubator
,
industry
,
fuHuaQiInvestment
,
page
}
=
checkReqParam
(
reqConf
,
req
.
body
);
let
{
month
,
fuHuaQiUscc
,
industry
,
fuHuaQiInvestment
,
page
}
=
checkReqParam
(
reqConf
,
req
.
body
);
const
Uscc
=
req
.
headers
.
uscc
;
const
Uscc
=
req
.
headers
.
uscc
;
let
result
=
await
financingBiz
.
financingList
(
month
,
belongToIncubator
,
industry
,
fuHuaQiInvestment
,
page
);
let
result
=
await
financingBiz
.
financingList
(
month
,
fuHuaQiUscc
,
industry
,
fuHuaQiInvestment
,
page
);
res
.
success
(
result
);
res
.
success
(
result
);
}
}
...
@@ -91,7 +91,7 @@ async function fuHuaQiBaseList(req, res) {
...
@@ -91,7 +91,7 @@ async function fuHuaQiBaseList(req, res) {
* @param res
* @param res
*/
*/
async
function
getEnterpriseList
(
req
,
res
)
{
async
function
getEnterpriseList
(
req
,
res
)
{
let
reqConf
=
{
logonTime
:
'number'
,
timeOfImmigration
:
'number'
,
fuHuaQiUscc
:
'string'
,
industry
:
'number'
,
isNaturalPersonHolding
:
'boolean'
,
page
:
'number'
};
let
reqConf
=
{
time
:
'number'
,
fuHuaQiUscc
:
'string'
,
industry
:
'number'
,
isNaturalPersonHolding
:
'boolean'
,
page
:
'number'
};
let
{
time
,
fuHuaQiUscc
,
industry
,
isNaturalPersonHolding
,
page
}
=
checkReqParam
(
reqConf
,
req
.
body
);
let
{
time
,
fuHuaQiUscc
,
industry
,
isNaturalPersonHolding
,
page
}
=
checkReqParam
(
reqConf
,
req
.
body
);
const
Uscc
=
req
.
headers
.
uscc
;
const
Uscc
=
req
.
headers
.
uscc
;
...
@@ -106,7 +106,7 @@ async function fuHuaQiBaseList(req, res) {
...
@@ -106,7 +106,7 @@ async function fuHuaQiBaseList(req, res) {
* @param res
* @param res
*/
*/
async
function
updateState
(
req
,
res
)
{
async
function
updateState
(
req
,
res
)
{
let
reqConf
=
{
userState
:
'
number
'
,
uscc
:
'string'
};
let
reqConf
=
{
userState
:
'
boolean
'
,
uscc
:
'string'
};
let
{
userState
,
uscc
}
=
checkReqParam
(
reqConf
,
req
.
body
);
let
{
userState
,
uscc
}
=
checkReqParam
(
reqConf
,
req
.
body
);
const
Uscc
=
req
.
headers
.
uscc
;
const
Uscc
=
req
.
headers
.
uscc
;
...
...
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