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
7825d145
...
7825d145a74771daff0f0f2ef8642c23c4572845
authored
2025-04-14 14:32:37 +0800
by
谭纯
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
增加 查询歌曲列表 tme接口
1 parent
e2ea349d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
app/Http/Controllers/Release/WorkController.php
app/Http/Controllers/Release/WorkController.php
View file @
7825d14
...
...
@@ -168,6 +168,18 @@ class WorkController extends BaseController
}
/**
* 查询歌曲列表
* @param Request $request
* @return \Illuminate\Http\JsonResponse|mixed
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public
function
tackList
(
Request
$request
)
{
list
(
$code
,
$msg
,
$data
)
=
$this
->
doApi
(
'/invests/track/tacklist'
,
$request
->
all
(),
'GET'
);
return
$code
===
0
?
Response
::
success
(
$data
)
:
Response
::
error
(
$code
,
$msg
,
$data
);
}
/**
* @param Request $request
* @return \Illuminate\Http\JsonResponse|mixed
* @throws \GuzzleHttp\Exception\GuzzleException
...
...
Please
register
or
sign in
to post a comment