Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
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
蒋勇
zhichan
Commits
23b6bfd5
Commit
23b6bfd5
authored
Apr 16, 2021
by
linboxuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lin add .package-lock.json
parent
b49dc714
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
0 deletions
+20
-0
center-manage/app/base/controller/impl/qifutong/statisticsCtl.js
+9
-0
center-manage/app/base/service/impl/qifutong/statisticsSve.js
+3
-0
center-manage/app/base/utils/qifutong/baseClient.js
+8
-0
center-manage/package-lock.json
+0
-0
No files found.
center-manage/app/base/controller/impl/qifutong/statisticsCtl.js
View file @
23b6bfd5
...
...
@@ -13,6 +13,15 @@ class StatisticsCtl extends CtlBase {
return
system
.
getResult
(
null
,
err
.
message
)
}
}
// 获取 渠道信息
async
getAllService
(
pobj
,
qobj
,
req
)
{
try
{
const
rs
=
await
this
.
service
.
getAllService
(
pobj
);
return
system
.
getResult
(
rs
);
}
catch
(
err
)
{
return
system
.
getResult
(
null
,
err
.
message
)
}
}
// 获取 产品信息
async
getAllProducts
(
pobj
,
qobj
,
req
)
{
...
...
center-manage/app/base/service/impl/qifutong/statisticsSve.js
View file @
23b6bfd5
...
...
@@ -4,6 +4,9 @@ class StatisticsService {
async
getAllChannels
(
pobj
)
{
return
ToQiFuTong
.
getAllChannels
();
}
async
getAllService
(
pobj
)
{
return
ToQiFuTong
.
getAllService
();
}
async
getAllProducts
(
pobj
)
{
return
ToQiFuTong
.
getAllProducts
();
}
...
...
center-manage/app/base/utils/qifutong/baseClient.js
View file @
23b6bfd5
...
...
@@ -90,6 +90,14 @@ class BaseClient {
});
return
data
;
}
async
getAllService
()
{
const
data
=
await
this
.
pushQiFuTong
(
'/web/auth/accessAuth/springBoard'
,
{
"actionType"
:
"getAllService"
,
"actionBody"
:
{
}
});
return
data
;
}
async
getAllProducts
()
{
const
data
=
await
this
.
pushQiFuTong
(
'/web/action/product/springBoard'
,
{
"actionType"
:
"getAllProducts"
,
...
...
center-manage/package-lock.json
View file @
23b6bfd5
This diff is collapsed.
Click to expand it.
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