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
1a242876
Commit
1a242876
authored
Aug 25, 2020
by
宋毅
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'center-channel' of gitlab.gongsibao.com:jiangyong/zhichan into center-channel
parents
a490ac0a
693e2bd2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
10 deletions
+6
-10
center-channel/app/base/api/impl/action/icbcTools.js
+4
-4
center-channel/app/base/service/impl/trademark/icbcSve.js
+2
-6
No files found.
center-channel/app/base/api/impl/action/icbcTools.js
View file @
1a242876
...
@@ -25,16 +25,16 @@ class IcbcToolsAPI extends WEBBase {
...
@@ -25,16 +25,16 @@ class IcbcToolsAPI extends WEBBase {
var
opResult
=
null
;
var
opResult
=
null
;
switch
(
action_type
)
{
switch
(
action_type
)
{
case
"getCompanyListByVague"
:
//企业模糊查询
case
"getCompanyListByVague"
:
//企业模糊查询
opResult
=
await
this
.
icbcSve
.
getCompanyListByVague
(
req
.
app
,
action_body
.
opStr
);
opResult
=
await
this
.
icbcSve
.
getCompanyListByVague
(
action_body
,
req
);
break
;
break
;
case
"getDetailByCompanyName"
:
//企业详情
case
"getDetailByCompanyName"
:
//企业详情
opResult
=
await
this
.
icbcSve
.
getDetailByCompanyName
(
req
.
app
,
action_body
.
opStr
);
opResult
=
await
this
.
icbcSve
.
getDetailByCompanyName
(
action_body
,
req
);
break
;
break
;
case
"getCompanyChangeByName"
:
//企业变更记录查询
case
"getCompanyChangeByName"
:
//企业变更记录查询
opResult
=
await
this
.
icbcSve
.
getCompanyChangeByName
(
req
.
app
,
action_body
.
opStr
);
opResult
=
await
this
.
icbcSve
.
getCompanyChangeByName
(
action_body
,
req
);
break
;
break
;
case
"getCompanyIcpByName"
:
//工商icp证照查询
case
"getCompanyIcpByName"
:
//工商icp证照查询
opResult
=
await
this
.
icbcSve
.
getCompanyIcpByName
(
req
.
app
,
action_body
.
opStr
);
opResult
=
await
this
.
icbcSve
.
getCompanyIcpByName
(
action_body
,
req
);
break
;
break
;
default
:
default
:
opResult
=
system
.
getResult
(
null
,
"action_type参数错误"
);
opResult
=
system
.
getResult
(
null
,
"action_type参数错误"
);
...
...
center-channel/app/base/service/impl/trademark/icbcSve.js
View file @
1a242876
...
@@ -7,17 +7,13 @@ class IcbcService extends AppServiceBase {
...
@@ -7,17 +7,13 @@ class IcbcService extends AppServiceBase {
super
();
super
();
this
.
zcApiUrl
=
settings
.
reqZcApi
();
this
.
zcApiUrl
=
settings
.
reqZcApi
();
}
}
//企业模糊查询
async
getCompanyListByVague
(
obj
,
req
)
{
async
getCompanyListByVague
(
obj
,
req
)
{
var
url
=
this
.
zcApiUrl
+
"api/tool/toolApi/getCompanyListByVague"
;
var
url
=
this
.
zcApiUrl
+
"api/tool/toolApi/getCompanyListByVague"
;
return
await
this
.
opReqResult
(
url
,
obj
,
req
);
return
await
this
.
opReqResult
(
url
,
obj
,
req
);
}
}
//企业模糊查询
async
getDetailByCompanyName
(
obj
,
req
)
{
var
url
=
this
.
zcApiUrl
+
"api/tool/toolApi/getDetailByCompanyName"
;
return
await
this
.
opReqResult
(
url
,
queryobj
,
req
);
}
//企业详情
//企业详情
async
get
NclByLikeNameAndNcl
(
queryobj
,
req
)
{
async
get
DetailByCompanyName
(
queryobj
,
req
)
{
var
url
=
this
.
zcApiUrl
+
"api/tool/toolApi/getNclByLikeNameAndNcl"
;
var
url
=
this
.
zcApiUrl
+
"api/tool/toolApi/getNclByLikeNameAndNcl"
;
return
await
this
.
opReqResult
(
url
,
queryobj
,
req
);
return
await
this
.
opReqResult
(
url
,
queryobj
,
req
);
}
}
...
...
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