Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Cong.Zhao
/
musician-api.hikoon.com
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
1ab2a2f0
...
1ab2a2f0cc8d7849b5d905e22c0b11ca6f121695
authored
2022-07-11 17:11:15 +0800
by
mengfan.xie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
9bcd1d3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app/Http/Controllers/Release/WorkController.php
app/Http/Controllers/Release/WorkController.php
View file @
1ab2a2f
...
...
@@ -68,7 +68,7 @@ class WorkController extends BaseController
$singer_param
[
'singerPic'
]
=
$pic_url
;
list
(
$code
,
$msg
,
$data
)
=
$this
->
doApi
(
'/invests/content/createSinger'
,
$singer_param
);
if
(
$code
===
0
)
{
return
Response
::
success
(
$data
);
return
Response
::
success
(
array_merge
(
$data
,[
'singer_pic'
=>
$pic_url
])
);
}
else
{
return
Response
::
error
(
$code
,
$msg
,
$data
);
}
...
...
Please
register
or
sign in
to post a comment