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
57717f0f
Commit
57717f0f
authored
Jul 14, 2025
by
lixinming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
de2d7592
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
keynote.ts
src/biz/mobileFuHuaQi/enterprise/keynote.ts
+3
-2
visit.ts
src/routers/guanWeiHuiMobileClient/visit.ts
+9
-9
No files found.
src/biz/mobileFuHuaQi/enterprise/keynote.ts
View file @
57717f0f
...
...
@@ -110,8 +110,9 @@ export async function keynoteList(fuHuaQiUscc:string, str:string, labels) {
dataList
.
push
({
enterpriseName
:
item
.
name
,
label
,
isFollow
:
item
.
follow
,
dynamicsCount
:
dynamicsMap
[
item
.
uscc
]
isFollow
:
item
.
follow
==
true
,
dynamicsCount
:
dynamicsMap
[
item
.
uscc
]
||
0
,
uscc
:
item
.
uscc
});
});
...
...
src/routers/guanWeiHuiMobileClient/visit.ts
View file @
57717f0f
...
...
@@ -4,20 +4,20 @@
import
*
as
asyncHandler
from
'express-async-handler'
;
import
{
eccReqParamater
}
from
'../../util/verificationParam'
;
import
{
check
FuHuaQi
Token
}
from
'../../middleware/user'
;
import
{
check
GuanWeiHuiMobile
Token
}
from
'../../middleware/user'
;
import
*
as
visitBiz
from
'../../biz/mobileFuHuaQi/visit'
;
export
function
setRouter
(
httpServer
)
{
httpServer
.
post
(
'/guanweihui/visit/calendar/statis'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_alendar_statis
));
httpServer
.
post
(
'/guanweihui/visit/calendar/list'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_calendar_list
));
httpServer
.
post
(
'/guanweihui/visit/add'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_add
));
httpServer
.
post
(
'/guanweihui/visit/info'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_info
));
httpServer
.
post
(
'/guanweihui/visit/update/state'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_update_state
));
httpServer
.
post
(
'/guanweihui/visit/log/statis'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_log_statis
));
httpServer
.
post
(
'/guanweihui/visit/log/list'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_log_list
));
httpServer
.
post
(
'/guanweihui/visit/calendar/statis'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_alendar_statis
));
httpServer
.
post
(
'/guanweihui/visit/calendar/list'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_calendar_list
));
httpServer
.
post
(
'/guanweihui/visit/add'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_add
));
httpServer
.
post
(
'/guanweihui/visit/info'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_info
));
httpServer
.
post
(
'/guanweihui/visit/update/state'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_update_state
));
httpServer
.
post
(
'/guanweihui/visit/log/statis'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_log_statis
));
httpServer
.
post
(
'/guanweihui/visit/log/list'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_log_list
));
//首页
httpServer
.
post
(
'/guanweihui/visit/home/statis'
,
check
FuHuaQi
Token
,
asyncHandler
(
gwh_visit_home_statis
));
//新加
httpServer
.
post
(
'/guanweihui/visit/home/statis'
,
check
GuanWeiHuiMobile
Token
,
asyncHandler
(
gwh_visit_home_statis
));
//新加
}
...
...
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