Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
semour
/
semour_web
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
fb2f4860
authored
Dec 05, 2022
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
获取单个品牌
parent
2c8832fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
app/Http/Services/BrandService.php
app/Http/Services/BrandService.php
View file @
fb2f4860
...
...
@@ -70,9 +70,12 @@ class BrandService
public
static
function
getStandardBrandInfo
(
$brandId
)
{
$standardBrand
=
Redis
::
hget
(
'standard_brand'
,
$brandId
);
$standardBrand
=
json_decode
(
$standardBrand
,
true
);
$standardBrandData
=
\Http
::
get
(
config
(
'website.footstone_url'
)
.
'/open/getStandardBrandInfo?brand_id='
.
$brandId
)
->
json
();
if
(
isset
(
$standardBrandData
[
'code'
])
&&
$standardBrandData
[
'code'
]
==
0
)
{
$standardBrand
=
$standardBrandData
[
'data'
];
return
$standardBrand
;
}
return
[];
}
}
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