Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
cc9db6fa
authored
Nov 15, 2018
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_adjust_20181026'
parents
e2926318
cc95ab2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
app/Http/Controllers/PermController.php
app/Http/Controllers/PermController.php
View file @
cc9db6fa
...
@@ -59,11 +59,12 @@
...
@@ -59,11 +59,12 @@
// 根据用户ID和业务ID查看角色
// 根据用户ID和业务ID查看角色
$userPerm
=
DB
::
table
(
't_user_perm'
)
->
where
([
'userId'
=>
$uid
,
'bid'
=>
$bid
])
->
first
();
$userPerm
=
DB
::
table
(
't_user_perm'
)
->
where
([
'userId'
=>
$uid
,
'bid'
=>
$bid
])
->
first
();
$role
=
json_decode
(
$userPerm
->
roles
,
true
);
if
(
empty
(
$userPerm
))
{
if
(
empty
(
$role
))
{
return
0
;
return
0
;
}
else
{
}
else
{
$role
=
json_decode
(
$userPerm
->
roles
,
true
);
foreach
(
$role
as
$v
)
{
foreach
(
$role
as
$v
)
{
$department
=
DB
::
table
(
't_role_perm'
)
->
where
([
'roleId'
=>
$v
,
'bid'
=>
$bid
])
->
first
();
$department
=
DB
::
table
(
't_role_perm'
)
->
where
([
'roleId'
=>
$v
,
'bid'
=>
$bid
])
->
first
();
...
...
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