Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
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
hujun
tl_estate
Commits
bffb0a81
Commit
bffb0a81
authored
Aug 19, 2019
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v
parent
6626c28a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
Broker.php
application/index/controller/Broker.php
+10
-1
No files found.
application/index/controller/Broker.php
View file @
bffb0a81
...
...
@@ -9,6 +9,7 @@
namespace
app\index\controller
;
use
app\api_broker\service\MyCenterService
;
use
app\api_broker\service\RedisCacheService
;
use
app\api_broker\service\VipService
;
use
app\index\service\BrokerService
;
...
...
@@ -488,7 +489,15 @@ class Broker extends Basic
//查看
$m_agent
=
new
AAgents
();
$field
=
'id,name,phone,password,district_id,store_id,sex,admin_off,remarks'
;
$result
[
'data'
]
=
$m_agent
->
getAgentInfo
(
$field
,
$this
->
params
[
'id'
]);
$data
=
$m_agent
->
getAgentInfo
(
$field
,
$this
->
params
[
'id'
]);
$s_center
=
new
MyCenterService
();
$bank_data
=
$s_center
->
getBank
(
$data
[
'id'
]);
foreach
(
$bank_data
as
$k
=>
$v
)
{
$data
[
$k
]
=
$v
;
}
$result
[
'data'
]
=
$data
;
}
return
$this
->
response
(
$result
[
'code'
],
$result
[
'msg'
],
$result
[
'data'
]);
}
...
...
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